Findbugs: A stab at squashing some issues across the board. Probably more to follow.

This commit is contained in:
dg2-new
2013-11-10 19:04:57 +00:00
parent 18e4c2ac63
commit 0a8f79f0e3
8 changed files with 22 additions and 20 deletions

View File

@@ -209,14 +209,15 @@ public class Log {
return;
// catenate all toString()s
String descString = "close() loop in";
StringBuilder builder = new StringBuilder();
builder.append("close() loop in");
for (Object o : desc) {
descString += " ";
descString += String.valueOf(o);
builder.append(" ");
builder.append(String.valueOf(o));
}
Exception e = new Exception("check stack trace");
log(level,descString,e);
log(level,builder.toString(),e);
}
public String getName() {