summaryrefslogtreecommitdiffstats
path: root/core/java/android/os
diff options
context:
space:
mode:
authorValter Strods <valters.strods@gmail.com>2014-08-19 23:42:18 +0300
committerNarayan Kamath <narayan@google.com>2015-02-23 10:48:32 +0000
commit7014b26c3e1429a6b841696ac7d84589158b0aaf (patch)
tree347ca2835bf583933975938d692d3cce696d9be8 /core/java/android/os
parentd002e02750b51fed3da41a2b4b222824df8d1a10 (diff)
downloadframeworks_base-7014b26c3e1429a6b841696ac7d84589158b0aaf.zip
frameworks_base-7014b26c3e1429a6b841696ac7d84589158b0aaf.tar.gz
frameworks_base-7014b26c3e1429a6b841696ac7d84589158b0aaf.tar.bz2
Clean up Javadocs for UEventObserver
This commit removes a couple of apostrophes from the word "UEvents" as the apostrophes would only be needed if something that belongs to the UEvent was being talked about. Instead, the UEvents are being talked about themselves - as a bunch. Change-Id: I6a7908c6b73c0739102b632d2499e0f1e3c2d47f
Diffstat (limited to 'core/java/android/os')
-rw-r--r--core/java/android/os/UEventObserver.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/os/UEventObserver.java b/core/java/android/os/UEventObserver.java
index 9dbfd50..5c80ca6 100644
--- a/core/java/android/os/UEventObserver.java
+++ b/core/java/android/os/UEventObserver.java
@@ -22,13 +22,13 @@ import java.util.ArrayList;
import java.util.HashMap;
/**
- * UEventObserver is an abstract class that receives UEvent's from the kernel.<p>
+ * UEventObserver is an abstract class that receives UEvents from the kernel.<p>
*
* Subclass UEventObserver, implementing onUEvent(UEvent event), then call
* startObserving() with a match string. The UEvent thread will then call your
* onUEvent() method when a UEvent occurs that contains your match string.<p>
*
- * Call stopObserving() to stop receiving UEvent's.<p>
+ * Call stopObserving() to stop receiving UEvents.<p>
*
* There is only one UEvent thread per process, even if that process has
* multiple UEventObserver subclass instances. The UEvent thread starts when
@@ -78,7 +78,7 @@ public abstract class UEventObserver {
}
/**
- * Begin observation of UEvent's.<p>
+ * Begin observation of UEvents.<p>
* This method will cause the UEvent thread to start if this is the first
* invocation of startObserving in this process.<p>
* Once called, the UEvent thread will call onUEvent() when an incoming
@@ -103,7 +103,7 @@ public abstract class UEventObserver {
}
/**
- * End observation of UEvent's.<p>
+ * End observation of UEvents.<p>
* This process's UEvent thread will never call onUEvent() on this
* UEventObserver after this call. Repeated calls have no effect.
*/