Skip to content
Snippets Groups Projects
Commit 3cfb96a3 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

comment, fix warning

parent eb2bf879
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ public class WebExample {
// Commands have to terminate with "carriage return/line feed"
// twice to end the request. Those are the special characters
// to have the control characters printed.
// to have the control characters printed. Part of the http protocol!
ps.print("\r\n\r\n");
ps.flush();
......@@ -57,7 +57,7 @@ public class WebExample {
}
System.out.println("web server message finished");
}
catch(Exception e)
catch(IOException e)
{
System.out.println(e);
System.out.println("Problem with client");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment