Skip to content

Commit

Permalink
Added comment in tutorial detailing apparent bug in HTTPD server
Browse files Browse the repository at this point in the history
  • Loading branch information
bmacgregor committed Mar 11, 2009
1 parent 12c262c commit 040eb09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpdsail/src/miniclient/Repository.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public List<List<String>> getStatements(String subj, String pred, String obj, Ob
* 'context' is a string or a list of strings.
*/
public void addStatement(String subj, String pred, String obj, Object context) {
System.out.println("ADD STATEMENT " + subj + " " + pred + " " + obj + " " + context);
//System.out.println("ADD STATEMENT " + subj + " " + pred + " " + obj + " " + context);
try {
JSONArray row = new JSONArray().put(subj).put(pred).put(obj).put(context);
JSONArray rows = new JSONArray().put(row);
Expand Down

0 comments on commit 040eb09

Please sign in to comment.