mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - Code cleanup, simplified if
This commit is contained in:
@@ -184,15 +184,6 @@ public class OrmQueryDetailParser {
|
||||
}
|
||||
|
||||
private boolean isFindFetchEnd() {
|
||||
if (isFetch()) {
|
||||
return true;
|
||||
}
|
||||
if (parser.isMatch("where")) {
|
||||
return true;
|
||||
}
|
||||
if (parser.isMatch("order", "by")) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return isFetch() || parser.isMatch("where") || parser.isMatch("order", "by");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user