Skip to content

Commit

Permalink
Fix handling of excludeJsInteropExport for SDM
Browse files Browse the repository at this point in the history
Change-Id: I5abafb1764e80ea56871d546906d05b7fe614339
  • Loading branch information
gkdn committed Aug 19, 2017
1 parent 9549aee commit 6553432
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void add(String regex) {
include = (c == '+');
}
Pattern p = Pattern.compile(regex);
values.add(regex);
values.add((include ? '+' : '-') + regex);
typePatterns.add(p);
includeType.add(include);
}
Expand Down

0 comments on commit 6553432

Please sign in to comment.