Brian O'Connor

Reverting IntentIdCompleter change from Gerrit #3909

commit id: 0d17c3135ed771fe1d146d2dd9ca7ae57e2a8238

Change-Id: If640a649135e405ba4258c5364c96822b49ec245
...@@ -39,7 +39,7 @@ public class IntentIdCompleter implements Completer { ...@@ -39,7 +39,7 @@ public class IntentIdCompleter implements Completer {
39 Iterator<Intent> it = service.getIntents().iterator(); 39 Iterator<Intent> it = service.getIntents().iterator();
40 SortedSet<String> strings = delegate.getStrings(); 40 SortedSet<String> strings = delegate.getStrings();
41 while (it.hasNext()) { 41 while (it.hasNext()) {
42 - strings.add(it.next().id().toString()); 42 + strings.add(it.next().key().toString());
43 } 43 }
44 44
45 // Now let the completer do the work for figuring out what to offer. 45 // Now let the completer do the work for figuring out what to offer.
......