diff options
| author | 2016-09-26 17:21:04 +0000 | |
|---|---|---|
| committer | 2016-09-26 17:21:04 +0000 | |
| commit | 9fa6e02d2d44846a56ad34e5ba5e552739df21d2 (patch) | |
| tree | bfa9f21026c1f0cdf463aad99296d33ff07a0f59 | |
| parent | c83ae8d29052a95dc62ef08d1fc53516ccbd0019 (diff) | |
| parent | 247d1c9ea831ff4fe1293585b8d1e38fc3c1b990 (diff) | |
Fixed a typo in the code sample
am: 247d1c9ea8
Change-Id: Ic07c17c95e29ce916e2cde22cbb0ce797f8c65fe
| -rw-r--r-- | core/java/android/database/CursorJoiner.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/database/CursorJoiner.java b/core/java/android/database/CursorJoiner.java index e3c298893e80..a95263b67b43 100644 --- a/core/java/android/database/CursorJoiner.java +++ b/core/java/android/database/CursorJoiner.java @@ -27,7 +27,7 @@ import java.util.Iterator; * * <pre> * CursorJoiner joiner = new CursorJoiner(cursorA, keyColumnsofA, cursorB, keyColumnsofB); - * for (CursorJointer.Result joinerResult : joiner) { + * for (CursorJoiner.Result joinerResult : joiner) { * switch (joinerResult) { * case LEFT: * // handle case where a row in cursorA is unique |