Skip to content

Commit

Permalink
ignore field added by InstantRun when checking for valid lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjoern Quentin committed Aug 1, 2016
1 parent 4b7054d commit 2203280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thinr/src/main/java/de/mobilej/thinr/Thinr.java
Expand Up @@ -46,7 +46,7 @@ public final class Thinr<T, P, I> implements ThinrBuilder<T, P, I>, ThinrFinalBu
private static final Looper MAIN_LOOPER = Looper.getMainLooper();
private static final Handler HANDLER = new Handler(MAIN_LOOPER);
private static final String TAG = "Thinr";
private static final List<String> FUNCTION_CLASS_FIELD_WHITE_LIST = Arrays.asList("$jacocoData", "instance");
private static final List<String> FUNCTION_CLASS_FIELD_WHITE_LIST = Arrays.asList("$jacocoData", "instance", "$change");

private static HashMap<String, HashMap<String, Thinr>> componentIdToThinrInstances = new HashMap<>();
private static Map<String, Object> activeComponentIdsToTargets = Collections.synchronizedMap(new HashMap<String, Object>());
Expand Down

0 comments on commit 2203280

Please sign in to comment.