Fix broken Javadoc

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=213979058
This commit is contained in:
olly 2018-09-21 06:49:26 -07:00 committed by Oliver Woodman
parent 108a7099e4
commit 321393e7cf
3 changed files with 14 additions and 14 deletions

View File

@ -144,13 +144,13 @@ public interface Player {
interface VideoComponent { interface VideoComponent {
/** /**
* Sets the {@link @VideoScalingMode}. * Sets the {@link VideoScalingMode}.
* *
* @param videoScalingMode The {@link @VideoScalingMode}. * @param videoScalingMode The {@link VideoScalingMode}.
*/ */
void setVideoScalingMode(@VideoScalingMode int videoScalingMode); void setVideoScalingMode(@VideoScalingMode int videoScalingMode);
/** Returns the {@link @VideoScalingMode}. */ /** Returns the {@link VideoScalingMode}. */
@VideoScalingMode @VideoScalingMode
int getVideoScalingMode(); int getVideoScalingMode();

View File

@ -75,14 +75,14 @@ public final class Log {
Log.logStackTraces = logStackTraces; Log.logStackTraces = logStackTraces;
} }
/** @see android.util.Log#d(String, String). */ /** @see android.util.Log#d(String, String) */
public static void d(String tag, String message) { public static void d(String tag, String message) {
if (logLevel == LOG_LEVEL_ALL) { if (logLevel == LOG_LEVEL_ALL) {
android.util.Log.d(tag, message); android.util.Log.d(tag, message);
} }
} }
/** @see android.util.Log#d(String, String, Throwable). */ /** @see android.util.Log#d(String, String, Throwable) */
public static void d(String tag, String message, @Nullable Throwable throwable) { public static void d(String tag, String message, @Nullable Throwable throwable) {
if (!logStackTraces) { if (!logStackTraces) {
d(tag, appendThrowableMessage(message, throwable)); d(tag, appendThrowableMessage(message, throwable));
@ -92,14 +92,14 @@ public final class Log {
} }
} }
/** @see android.util.Log#i(String, String). */ /** @see android.util.Log#i(String, String) */
public static void i(String tag, String message) { public static void i(String tag, String message) {
if (logLevel <= LOG_LEVEL_INFO) { if (logLevel <= LOG_LEVEL_INFO) {
android.util.Log.i(tag, message); android.util.Log.i(tag, message);
} }
} }
/** @see android.util.Log#i(String, String, Throwable). */ /** @see android.util.Log#i(String, String, Throwable) */
public static void i(String tag, String message, @Nullable Throwable throwable) { public static void i(String tag, String message, @Nullable Throwable throwable) {
if (!logStackTraces) { if (!logStackTraces) {
i(tag, appendThrowableMessage(message, throwable)); i(tag, appendThrowableMessage(message, throwable));
@ -109,14 +109,14 @@ public final class Log {
} }
} }
/** @see android.util.Log#w(String, String). */ /** @see android.util.Log#w(String, String) */
public static void w(String tag, String message) { public static void w(String tag, String message) {
if (logLevel <= LOG_LEVEL_WARNING) { if (logLevel <= LOG_LEVEL_WARNING) {
android.util.Log.w(tag, message); android.util.Log.w(tag, message);
} }
} }
/** @see android.util.Log#w(String, String, Throwable). */ /** @see android.util.Log#w(String, String, Throwable) */
public static void w(String tag, String message, @Nullable Throwable throwable) { public static void w(String tag, String message, @Nullable Throwable throwable) {
if (!logStackTraces) { if (!logStackTraces) {
w(tag, appendThrowableMessage(message, throwable)); w(tag, appendThrowableMessage(message, throwable));
@ -126,14 +126,14 @@ public final class Log {
} }
} }
/** @see android.util.Log#e(String, String). */ /** @see android.util.Log#e(String, String) */
public static void e(String tag, String message) { public static void e(String tag, String message) {
if (logLevel <= LOG_LEVEL_ERROR) { if (logLevel <= LOG_LEVEL_ERROR) {
android.util.Log.e(tag, message); android.util.Log.e(tag, message);
} }
} }
/** @see android.util.Log#e(String, String, Throwable). */ /** @see android.util.Log#e(String, String, Throwable) */
public static void e(String tag, String message, @Nullable Throwable throwable) { public static void e(String tag, String message, @Nullable Throwable throwable) {
if (!logStackTraces) { if (!logStackTraces) {
e(tag, appendThrowableMessage(message, throwable)); e(tag, appendThrowableMessage(message, throwable));

View File

@ -59,9 +59,9 @@ public final class Projection {
/** /**
* Generates an equirectangular projection. * Generates an equirectangular projection.
* *
* @param radius Size of the sphere. Must be > 0. * @param radius Size of the sphere. Must be &gt; 0.
* @param latitudes Number of rows that make up the sphere. Must be >= 1. * @param latitudes Number of rows that make up the sphere. Must be &gt;= 1.
* @param longitudes Number of columns that make up the sphere. Must be >= 1. * @param longitudes Number of columns that make up the sphere. Must be &gt;= 1.
* @param verticalFovDegrees Total latitudinal degrees that are covered by the sphere. Must be in * @param verticalFovDegrees Total latitudinal degrees that are covered by the sphere. Must be in
* (0, 180]. * (0, 180].
* @param horizontalFovDegrees Total longitudinal degrees that are covered by the sphere.Must be * @param horizontalFovDegrees Total longitudinal degrees that are covered by the sphere.Must be