Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
binwiederhier committed Sep 12, 2014
1 parent 0f7013e commit d7dfd9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private void handleRestRequest(HttpServerExchange exchange) throws IOException {
}
}
else {
String message = IOUtils.toString(exchange.getInputStream());
String message = IOUtils.toString(exchange.getInputStream()); // TODO [high] Read entire file to memory. Dangerous!
logger.log(Level.INFO, "REST message received: " + message);

try {
Expand Down

0 comments on commit d7dfd9c

Please sign in to comment.