summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-07-06 12:33:33 +0200
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-07-06 12:33:33 +0200
commite4767bccc7324d4b61a334bf6c0558d0080045e2 (patch)
tree728a5df44f02ca10f760b979873c990cd4c0d265 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java
parent3422e5eb2819f5de304f25dc622f5284813bb9b4 (diff)
downloadpdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.tar.gz
pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.tar.bz2
pdf-over-e4767bccc7324d4b61a334bf6c0558d0080045e2.zip
remove NON-NLS comments, cleanup whitespace
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java
index af819470..cf87865c 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/cliarguments/InvisibleProfile.java
@@ -32,7 +32,7 @@ public class InvisibleProfile extends Argument {
* Constructor
*/
public InvisibleProfile() {
- super(new String[] {"-v"}, "argument.help.vis"); //$NON-NLS-1$ //$NON-NLS-2$
+ super(new String[] {"-v"}, "argument.help.vis"); // //
}
/**
@@ -50,21 +50,21 @@ public class InvisibleProfile extends Argument {
throws InitializationException {
try {
log.info("Set Profile Invisible");
-
+
if (args.length > argOffset + 1) {
PdfAs4SignatureParameter.PROFILE_VISIBILITY=false;
log.debug("We are setting the profile visibility to false");
- return argOffset + 1;
+ return argOffset + 1;
}
-
+
} catch (Exception ex) {
- log.error("Signature Profile Visibilty Error", ex); //$NON-NLS-1$
+ log.error("Signature Profile Visibilty Error", ex); //
throw new InitializationException(
- Messages.getString("argument.invalid.vis") + this.getHelpText(), ex); //$NON-NLS-1$
+ Messages.getString("argument.invalid.vis") + this.getHelpText(), ex); //
}
throw new InitializationException(
- Messages.getString("argument.invalid.vis") + this.getHelpText(), null); //$NON-NLS-1$
+ Messages.getString("argument.invalid.vis") + this.getHelpText(), null); //
}
}