mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Remove unnecessary boxing and unboxing
This commit is contained in:
@@ -139,7 +139,7 @@ public class SqlQueryTests extends BaseTestCase {
|
||||
public boolean accept(SqlRow bean) {
|
||||
count.incrementAndGet();
|
||||
Integer id = bean.getInteger("id");
|
||||
return id.intValue() < 3;
|
||||
return id < 3;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user