get last commit date of mainframe properies files 2

This commit is contained in:
honfika@gmail.com
2016-04-04 21:15:35 +02:00
parent ffd8d59e4b
commit b575ebf802
2 changed files with 39 additions and 4 deletions

View File

@@ -780,6 +780,8 @@ public class CommandLineArgumentParser {
parseDebugTool(args);
} else if (nextParam.equals("--compareresources")) {
parseCompareResources(args);
} else if (nextParam.equals("--resourcedates")) {
parseResourceDates(args);
} else if (nextParam.equals("-help") || nextParam.equals("--help") || nextParam.equals("/?") || nextParam.equals("\\_") /* /? translates as this on windows */) {
printHeader();
printCmdLineUsage(null);
@@ -1275,6 +1277,10 @@ public class CommandLineArgumentParser {
CheckResources.compareResources(System.out, revision, revision2);
}
private static void parseResourceDates(Stack<String> args) {
CheckResources.checkTranslationDate(System.out);
}
private static void parseProxy(Stack<String> args) {
int port = 55555;
String portStr = args.peek();