Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
issue fixed.
  • Loading branch information
ryaneberly committed Jul 18, 2017
1 parent 826b058 commit 4a39604
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ public void startComponent(Context context, BugList bugs) {
//if an expression already referenced this component, check it here:
boolean matched = false;
if(expressionCheckRegister.containsKey(key)){
for(final PackageCaseCheckerEntry expressionEntry : expressionCheckRegister.get(key)){
List<PackageCaseCheckerEntry> clonedList = new ArrayList<PackageCaseCheckerEntry>();
clonedList.addAll(expressionCheckRegister.get(key));
for(final PackageCaseCheckerEntry expressionEntry : clonedList){
if(checkComponentRegister(expressionEntry.context,expressionEntry.componentPath,expressionEntry.componentName)){
matched = true;
for(ContextMessage message: expressionEntry.context.getMessages()){
Expand Down

0 comments on commit 4a39604

Please sign in to comment.