Skip to content

Commit 2c506b3

Browse files
committed
fix a comma
1 parent 32ff83f commit 2c506b3

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cmake_minimum_required(VERSION 2.8)
2+
find_package(Java REQUIRED)
3+
include(UseJava)
4+
project(SSProxyCache)
5+
6+
set(CMAKE_JAVA_COMPILE_FLAGS "-Xlint:deprecation")
7+
set(EXECUTABLE_OUTPUT_PATH ..)
8+
9+
add_jar(SSProxyCache HttpRequest.java HttpResponse.java ProxyCache.java SCache.java SSHelpers/Util.java)
10+
11+
get_target_property(_jarFile SSProxyCache JAR_FILE)
12+
get_target_property(_classDir SSProxyCache CLASSDIR)

ProxyCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public static void main(String args[]) {
143143
try {
144144
myPort = Integer.parseInt(args[0]);
145145
} catch (ArrayIndexOutOfBoundsException e) {
146-
System.out.println("Usage: ProxyCache <Port Number> [args]\nArguments:\n -v --verbose Verbose output (more logging) \n -s, --secure Proxy HTTPS/TLS (experimental, can use 100% CPU)\n -e, --expires Check expires header");
146+
System.out.println("Usage: ProxyCache <Port Number> [args]\nArguments:\n -v, --verbose Verbose output (more logging) \n -s, --secure Proxy HTTPS/TLS (experimental, can use 100% CPU)\n -e, --expires Check expires header");
147147
System.exit(-1);
148148
} catch (NumberFormatException e) {
149149
System.out.println("Please give port number as integer.");

0 commit comments

Comments
 (0)