Commit 321393e7 by olly Committed by Oliver Woodman

Fix broken Javadoc

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=213979058
parent 108a7099
......@@ -144,13 +144,13 @@ public interface Player {
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);
/** Returns the {@link @VideoScalingMode}. */
/** Returns the {@link VideoScalingMode}. */
@VideoScalingMode
int getVideoScalingMode();
......
......@@ -75,14 +75,14 @@ public final class Log {
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) {
if (logLevel == LOG_LEVEL_ALL) {
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) {
if (!logStackTraces) {
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) {
if (logLevel <= LOG_LEVEL_INFO) {
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) {
if (!logStackTraces) {
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) {
if (logLevel <= LOG_LEVEL_WARNING) {
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) {
if (!logStackTraces) {
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) {
if (logLevel <= LOG_LEVEL_ERROR) {
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) {
if (!logStackTraces) {
e(tag, appendThrowableMessage(message, throwable));
......
......@@ -59,9 +59,9 @@ public final class Projection {
/**
* Generates an equirectangular projection.
*
* @param radius Size of the sphere. Must be > 0.
* @param latitudes Number of rows that make up the sphere. Must be >= 1.
* @param longitudes Number of columns that make up the sphere. Must be >= 1.
* @param radius Size of the sphere. Must be &gt; 0.
* @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 &gt;= 1.
* @param verticalFovDegrees Total latitudinal degrees that are covered by the sphere. Must be in
* (0, 180].
* @param horizontalFovDegrees Total longitudinal degrees that are covered by the sphere.Must be
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment