Skip to content

Commit

Permalink
chore: Remove obsolete class
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Oct 24, 2024
1 parent b8e7434 commit d1b78c4
Showing 1 changed file with 0 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,42 +218,4 @@ private static final String getZipEntryFileName(String orgFileName) {
return orgFileName.replaceAll("[^A-Za-z0-9.]", "_");
}
}
}




class ScanArgument {
private boolean isFileArgument;
private String argKey;
private String argValue;

public void setFileArgument(boolean isFileArgument) {
this.isFileArgument = isFileArgument;
}

public void setArgKey(String argKey) {
this.argKey = argKey;
}

public void setArgValue(String argValue) {
this.argValue = argValue;
}

public boolean isFileArgument() {
return isFileArgument;
}

public String getArgKey() {
return argKey;
}

public String getArgValue() {
return argValue;
}

@Override
public String toString() {
return "Argument " + argKey + (isFileArgument? " is a file argument with value " : " is not a file argument with value ") + argValue;
}
}

0 comments on commit d1b78c4

Please sign in to comment.