diff options
| author | 2016-09-26 17:29:02 +0000 | |
|---|---|---|
| committer | 2016-09-26 17:29:02 +0000 | |
| commit | f6356ef3f61b8272661447375b46b9f6eb505cd7 (patch) | |
| tree | dc85c31c5297830f29080b58f544ad7e56663e4c | |
| parent | 29678c0357b5803ae41ad10639da5656d3c285d5 (diff) | |
| parent | 6a400a5190d28718dad887116e776f9c05843275 (diff) | |
Fixed a typo in the code sample am: 247d1c9ea8
am: 6a400a5190
Change-Id: Idbf5c554ac863e7c2024816ad726d6e6c8cb9d2f
| -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 |