Skip to content

Instantly share code, notes, and snippets.

@knd
Last active August 29, 2015 14:02
Show Gist options
  • Save knd/3c533ef68786961f64c6 to your computer and use it in GitHub Desktop.
Save knd/3c533ef68786961f64c6 to your computer and use it in GitHub Desktop.
@Override
public Map<TObject, Set<Long>> browse(String key) {
Map<TObject, Set<Long>> test = Transformers.transformTreeMapSet(getSecondaryRecord(Text.wrap(key))
.browse(), Functions.VALUE_TO_TOBJECT,
Functions.PRIMARY_KEY_TO_LONG, TObjectSorter.INSTANCE);
Variables.register("=== JUST FOR FUN ", test); // test is TreeMap when use debugger to trace
// test is also TreeMap when run with StoreTest.java
return test;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment