mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Internal refactor / tidy - Suggestions from intellij code analysis. (#1209)
This commit is contained in:
committed by
Rob Bygrave
parent
0056568bc7
commit
f1ebe7929b
@@ -39,10 +39,10 @@ public class BeanCollectionHelpFactory {
|
||||
|
||||
SpiQuery.Type manyType = request.getQuery().getType();
|
||||
|
||||
if (manyType.equals(SpiQuery.Type.LIST)) {
|
||||
if (manyType == SpiQuery.Type.LIST) {
|
||||
return LIST_HELP;
|
||||
|
||||
} else if (manyType.equals(SpiQuery.Type.SET)) {
|
||||
} else if (manyType == SpiQuery.Type.SET) {
|
||||
return SET_HELP;
|
||||
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user