Removed some warnings, redisabled BufferedOutputStream closing.

This commit is contained in:
FrozenCow 2011-03-15 21:04:53 +01:00
parent 8105a1d2a5
commit 6c6d29a402
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)) {