Commit d7e23f82 by eguven Committed by Oliver Woodman

Fix package visibility comments

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=220323772
parent 0c4d0ee1
...@@ -23,7 +23,7 @@ import java.util.Arrays; ...@@ -23,7 +23,7 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
@SuppressWarnings("ConstantField") @SuppressWarnings("ConstantField")
/* package*/ abstract class Atom { /* package */ abstract class Atom {
/** /**
* Size of an atom header, in bytes. * Size of an atom header, in bytes.
......
...@@ -23,10 +23,8 @@ import java.io.DataOutputStream; ...@@ -23,10 +23,8 @@ import java.io.DataOutputStream;
import java.io.IOException; import java.io.IOException;
import java.util.TreeSet; import java.util.TreeSet;
/** /** Defines the cached content for a single stream. */
* Defines the cached content for a single stream. /* package */ final class CachedContent {
*/
/*package*/ final class CachedContent {
private static final int VERSION_METADATA_INTRODUCED = 2; private static final int VERSION_METADATA_INTRODUCED = 2;
private static final int VERSION_MAX = Integer.MAX_VALUE; private static final int VERSION_MAX = Integer.MAX_VALUE;
......
...@@ -43,7 +43,7 @@ import javax.crypto.spec.IvParameterSpec; ...@@ -43,7 +43,7 @@ import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec; import javax.crypto.spec.SecretKeySpec;
/** Maintains the index of cached content. */ /** Maintains the index of cached content. */
/*package*/ class CachedContentIndex { /* package */ class CachedContentIndex {
public static final String FILE_NAME = "cached_content_index.exi"; public static final String FILE_NAME = "cached_content_index.exi";
......
...@@ -120,7 +120,7 @@ public final class SimpleCache implements Cache { ...@@ -120,7 +120,7 @@ public final class SimpleCache implements Cache {
* @param evictor The evictor to be used. * @param evictor The evictor to be used.
* @param index The CachedContentIndex to be used. * @param index The CachedContentIndex to be used.
*/ */
/*package*/ SimpleCache(File cacheDir, CacheEvictor evictor, CachedContentIndex index) { /* package */ SimpleCache(File cacheDir, CacheEvictor evictor, CachedContentIndex index) {
if (!lockFolder(cacheDir)) { if (!lockFolder(cacheDir)) {
throw new IllegalStateException("Another SimpleCache instance uses the folder: " + cacheDir); throw new IllegalStateException("Another SimpleCache instance uses the folder: " + cacheDir);
} }
......
...@@ -23,10 +23,8 @@ import java.io.File; ...@@ -23,10 +23,8 @@ import java.io.File;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/** /** This class stores span metadata in filename. */
* This class stores span metadata in filename. /* package */ final class SimpleCacheSpan extends CacheSpan {
*/
/*package*/ final class SimpleCacheSpan extends CacheSpan {
private static final String SUFFIX = ".v3.exo"; private static final String SUFFIX = ".v3.exo";
private static final Pattern CACHE_FILE_PATTERN_V1 = Pattern.compile( private static final Pattern CACHE_FILE_PATTERN_V1 = Pattern.compile(
......
...@@ -126,7 +126,7 @@ public final class PlayerEmsgHandler implements Handler.Callback { ...@@ -126,7 +126,7 @@ public final class PlayerEmsgHandler implements Handler.Callback {
removePreviouslyExpiredManifestPublishTimeValues(); removePreviouslyExpiredManifestPublishTimeValues();
} }
/* package*/ boolean maybeRefreshManifestBeforeLoadingNextChunk(long presentationPositionUs) { /* package */ boolean maybeRefreshManifestBeforeLoadingNextChunk(long presentationPositionUs) {
if (!manifest.dynamic) { if (!manifest.dynamic) {
return false; return false;
} }
......
...@@ -271,7 +271,7 @@ public final class CanvasRenderer { ...@@ -271,7 +271,7 @@ public final class CanvasRenderer {
} }
@Nullable @Nullable
/*package*/ static PointF internalTranslateClick( /* package */ static PointF internalTranslateClick(
float yaw, float yaw,
float pitch, float pitch,
float xUnit, float xUnit,
......
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