mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - tidy BindParams
This commit is contained in:
@@ -171,8 +171,7 @@ public class BindParams implements Serializable {
|
||||
}
|
||||
|
||||
private Param getParam(String name) {
|
||||
Param p = namedParameters.computeIfAbsent(name, k -> new Param());
|
||||
return p;
|
||||
return namedParameters.computeIfAbsent(name, k -> new Param());
|
||||
}
|
||||
|
||||
private Param getParam(int position) {
|
||||
|
||||
Reference in New Issue
Block a user