diff options
author | John Spurlock <jspurlock@google.com> | 2012-09-21 15:56:13 -0400 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2012-09-21 15:56:13 -0400 |
commit | 5e416d88032a8f79a20a8052187ee8f24d8c9c02 (patch) | |
tree | aec31135d83e48184c424162e91e33677171373f /core/java/android/service | |
parent | d5c582c494deac518c85682dc28728c2fadae8da (diff) | |
download | frameworks_base-5e416d88032a8f79a20a8052187ee8f24d8c9c02.zip frameworks_base-5e416d88032a8f79a20a8052187ee8f24d8c9c02.tar.gz frameworks_base-5e416d88032a8f79a20a8052187ee8f24d8c9c02.tar.bz2 |
Fix javadocs to fix build.
Change-Id: I6d7d63b9322f225124f722a245c1222540afbff4
Diffstat (limited to 'core/java/android/service')
-rw-r--r-- | core/java/android/service/dreams/Dream.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/service/dreams/Dream.java b/core/java/android/service/dreams/Dream.java index bd220a1..dedfb0c 100644 --- a/core/java/android/service/dreams/Dream.java +++ b/core/java/android/service/dreams/Dream.java @@ -72,7 +72,7 @@ public class Dream extends Service implements Window.Callback { private final String TAG = Dream.class.getSimpleName() + "[" + getClass().getSimpleName() + "]"; /** - * Used with {@link #ACTION_MAIN} to declare the necessary intent-filter for a dream. + * Used with {@link Intent#ACTION_MAIN} to declare the necessary intent-filter for a dream. * * @see Dream */ @@ -393,7 +393,7 @@ public class Dream extends Service implements Window.Callback { /** * Sets View.SYSTEM_UI_FLAG_LOW_PROFILE on the content view. * - * @param lightsOut True to set View.SYSTEM_UI_FLAG_LOW_PROFILE + * @param lowProfile True to set View.SYSTEM_UI_FLAG_LOW_PROFILE */ public void setLowProfile(boolean lowProfile) { mLowProfile = lowProfile; |