Skip to content

Commit

Permalink
#153: Fix another LGTM error
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorjohannson committed Feb 21, 2019
1 parent a0a18a8 commit dfce1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pro/javacard/gp/GPTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ public static void main(String[] argv) throws Exception {
for (AID aid : aids) {
try {
// If the AID represents a package or otherwise force is enabled.
Boolean deleteDeps = reg.allPackageAIDs().contains(aid) || args.has(OPT_FORCE);
boolean deleteDeps = reg.allPackageAIDs().contains(aid) || args.has(OPT_FORCE);
gp.deleteAID(aid, deleteDeps);
} catch (GPException e) {
if (!gp.getRegistry().allAIDs().contains(aid)) {
Expand Down

0 comments on commit dfce1b7

Please sign in to comment.