Skip to content

Commit 1b7bc6e

Browse files
committed
code review
1 parent 2380efa commit 1b7bc6e

File tree

2 files changed

+2
-19
lines changed

2 files changed

+2
-19
lines changed

HttpResponse.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,6 @@ else if (line.toLowerCase(Locale.ROOT).startsWith("last-modified")) {
104104
}
105105

106106

107-
// http://codereview.stackexchange.com/questions/49746/implement-http-server-with-persistent-connection
108-
109-
// http://stackoverflow.com/questions/3870847/how-to-convert-the-datainputstream-to-the-string-in-java
110-
//http://stackoverflow.com/questions/13115857/http-socket-programming-java
111-
//
112-
//http://stackoverflow.com/questions/7696358/server-socket-file-transfer
113-
//http://stackoverflow.com/questions/13555668/java-send-file-using-sockets
114-
// http://stackoverflow.com/questions/10475898/receive-byte-using-bytearrayinputstream-from-a-socket
115-
// http://stackoverflow.com/questions/9520911/java-sending-and-receiving-file-byte-over-sockets
116-
// http://stackoverflow.com/questions/1176135/java-socket-send-receive-byte-array
117-
// http://stackoverflow.com/questions/8274966/reading-a-byte-array-from-socket
118-
// TSL -> http://stackoverflow.com/questions/18787419/ssl-socket-connection#18790838
119-
120107
} catch (IOException e) {
121108
// error = 500;
122109
System.out.println("Error reading response body: " + e);

Makefile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
JDOC = javadoc
2+
JDOCFLAGS = -windowtitle $(DOCTITLE) -doctitle $(DOCTITLE) -subpackages SSHelpers -version -author
23
JFLAGS = -Xlint:deprecation
34
JC = javac
45
DOCTITLE = 'SS Proxy Cache API Specification'
@@ -14,12 +15,7 @@ clean:
1415
$(RM) *.class
1516

1617
docs: *.java
17-
$(JDOC) $^ -d docs \
18-
-windowtitle $(DOCTITLE) \
19-
-doctitle $(DOCTITLE) \
20-
-subpackages SSHelpers \
21-
-version \
22-
-author
18+
$(JDOC) $^ -d docs $(JDOCFLAGS)
2319

2420
docs-clean:
2521
$(RM) docs/*

0 commit comments

Comments
 (0)