From 7014b26c3e1429a6b841696ac7d84589158b0aaf Mon Sep 17 00:00:00 2001 From: Valter Strods Date: Tue, 19 Aug 2014 23:42:18 +0300 Subject: 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 --- core/java/android/os/UEventObserver.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core/java/android/os') 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.

+ * UEventObserver is an abstract class that receives UEvents from the kernel.

* * 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.

* - * Call stopObserving() to stop receiving UEvent's.

+ * Call stopObserving() to stop receiving UEvents.

* * 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.

+ * Begin observation of UEvents.

* This method will cause the UEvent thread to start if this is the first * invocation of startObserving in this process.

* Once called, the UEvent thread will call onUEvent() when an incoming @@ -103,7 +103,7 @@ public abstract class UEventObserver { } /** - * End observation of UEvent's.

+ * End observation of UEvents.

* This process's UEvent thread will never call onUEvent() on this * UEventObserver after this call. Repeated calls have no effect. */ -- cgit v1.1