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
This commit is contained in:
aquilescanta 2016-04-12 02:29:56 -07:00 committed by Oliver Woodman
parent efe76def89
commit def59ebb26

View File

@ -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;
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.
*/ */