Skip to content

Commit

Permalink
Merge pull request #22 from itmammoth/master
Browse files Browse the repository at this point in the history
Fix IllegalStateException in apt process
  • Loading branch information
nakamura-to authored Feb 1, 2020
2 parents 0c31da2 + 9187521 commit 9bdf372
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ protected void removeHiddenFieldDeclarations(
if (env.getElementUtils().hides(hider.getElement(),
hidden.getElement())) {
it.remove();
break;
}
}
}
Expand Down Expand Up @@ -382,6 +383,7 @@ protected void removeOverriddenMethodDeclarations(
if (elements.overrides(overrider.getElement(),
overridden.getElement(), overriderTypeElement)) {
it.remove();
break;
}
}
}
Expand All @@ -403,6 +405,7 @@ protected void removeHiddenMethodDeclarations(
if (env.getElementUtils().hides(hider.getElement(),
hidden.getElement())) {
it.remove();
break;
}
}
}
Expand Down

0 comments on commit 9bdf372

Please sign in to comment.