Unnecessary boxing was removed from tests (#30250)
This commit is contained in:
parent
622d8af0ef
commit
206dafa01d
3 changed files with 7 additions and 26 deletions
|
|
@ -194,14 +194,7 @@ public class JavaAPI extends JUnitSuite {
|
|||
}
|
||||
|
||||
public void onReceive(Object msg) {
|
||||
String reply =
|
||||
String.valueOf(a)
|
||||
+ "-"
|
||||
+ String.valueOf(b)
|
||||
+ "-"
|
||||
+ String.valueOf(c)
|
||||
+ "-"
|
||||
+ String.valueOf(d);
|
||||
String reply = a + "-" + b + "-" + c + "-" + d;
|
||||
getSender().tell(reply, getSelf());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue