Skip to content

Commit f27f2ba

Browse files
author
David R. MacIver
committed
reformatting (mainly to remove trailing space)
1 parent 84f2264 commit f27f2ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/com/rabbitmq/tools/Tracer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
public class Tracer implements Runnable {
5656
private static boolean property(String property){
5757
return Boolean.parseBoolean(System.getProperty(
58-
"com.rabbitmq.tools.Tracer." + property));
58+
"com.rabbitmq.tools.Tracer." + property));
5959
}
6060

6161
public static final boolean WITHHOLD_INBOUND_HEARTBEATS =
@@ -212,7 +212,7 @@ public void run() {
212212
}
213213

214214
public void log(String message){
215-
logger.log("" + System.currentTimeMillis() + ": conn#"
215+
logger.log("" + System.currentTimeMillis() + ": conn#"
216216
+ id + " " + message);
217217
}
218218

@@ -243,8 +243,8 @@ public Frame readFrame() throws IOException {
243243
}
244244

245245
public void report(int channel, Object object) {
246-
Tracer.this.log("ch#" + channel
247-
+ (inBound ? " -> " : " <- ")
246+
Tracer.this.log("ch#" + channel
247+
+ (inBound ? " -> " : " <- ")
248248
+ object);
249249
}
250250

@@ -307,7 +307,7 @@ public void doFrame() throws IOException {
307307
AMQCommand cmd = c.handleFrame(f);
308308
if (cmd != null) {
309309
report(f.channel, cmd.toString(SUPPRESS_COMMAND_BODIES));
310-
assemblers.remove(f.channel);
310+
assemblers.remove(f.channel);
311311
}
312312
}
313313
}

0 commit comments

Comments
 (0)