We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de3a99 commit a8dc572Copy full SHA for a8dc572
1 file changed
src/main/java/net/pdfix/App.java
@@ -16,12 +16,10 @@ public class App {
16
private static String VERSION = "1.0.0";
17
private static String APP_NAME = "Validate PDF Accessibility";
18
19
- // Success codes: 0-255 for object counts
20
- // Error codes: 256+ to avoid conflict with object counts
21
- private static final int ERROR_GENERAL = 101;
22
-
23
- // Maximum count we can return as exit code is 100
24
- private static final int MAX_EXIT_CODE = 100; // maximum number of errors returned as an exit code
+ // Success codes: 0-100 for object counts
+ // Error codes: 101+ to avoid conflict with object counts
+ private static final int MAX_EXIT_CODE = 100;
+ private static final int ERROR_GENERAL = 101;
25
26
private static void displayVersion() {
27
Properties properties = new Properties();
0 commit comments