Removed some warnings, redisabled BufferedOutputStream closing.

This commit is contained in:
FrozenCow 2011-03-15 21:04:53 +01:00
parent 4961c27cf0
commit 411e1adbfc
4 changed files with 8 additions and 20 deletions

View file

@ -64,7 +64,7 @@ class JsonTimerTask extends TimerTask {
}
if (jsonMsgs != null) {
Iterator iter = jsonMsgs.iterator();
Iterator<?> iter = jsonMsgs.iterator();
while (iter.hasNext()) {
JSONObject o = (JSONObject) iter.next();
if (Long.parseLong(String.valueOf(o.get("timestamp"))) >= (lastTimestamp)) {