Commit def59ebb by aquilescanta Committed by Oliver Woodman

Replaced full reference with import

This CL removes a warning by adding the import, and removes a qualified reference in the process.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=119618343
parent efe76def
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
*/ */
package com.google.android.exoplayer.util; package com.google.android.exoplayer.util;
import android.os.SystemClock;
/** /**
* An interface through which system clocks can be read. The {@link SystemClock} implementation * An interface through which system clocks can be read. The {@link SystemClock} implementation
* must be used for all non-test cases. * must be used for all non-test cases.
...@@ -22,7 +24,7 @@ package com.google.android.exoplayer.util; ...@@ -22,7 +24,7 @@ package com.google.android.exoplayer.util;
public interface Clock { public interface Clock {
/** /**
* Returns {@link android.os.SystemClock#elapsedRealtime}. * Returns {@link SystemClock#elapsedRealtime}.
* *
* @return Elapsed milliseconds since boot. * @return Elapsed milliseconds since boot.
*/ */
......
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