Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kryukov committed Nov 26, 2013
1 parent 6cde9b3 commit 743f39a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions generic/src/jimm/comm/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public static Vector<Config> parseIni(Tokenizer t, Vector<Config> configs) {
ch = skipSpace(t, ch);
if ('[' == ch) {
if (0 < keys.size()) {
System.out.println("section " + section + keys.size());
configs.addElement(new Config(section, keys, values));
keys = new Vector<String>();
values = new Vector<String>();
Expand All @@ -118,11 +117,9 @@ public static Vector<Config> parseIni(Tokenizer t, Vector<Config> configs) {
String value = readKey(t, ch, '\n');
keys.addElement(key);
values.addElement(value);
System.out.println("key " + key + " " + value);
}
ch = t.nextChat();
}
System.out.println("section " + section + keys.size());
configs.addElement(new Config(section, keys, values));
return configs;
}
Expand Down

0 comments on commit 743f39a

Please sign in to comment.