mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Merge pull request #1687 from thibaultmeyer/bugfix/implicit-conv-from-array-to-str
Fix implicit conversion from array to string
This commit is contained in:
@@ -95,7 +95,7 @@ class BindCaptureTypes {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.valueOf(x);
|
||||
return Arrays.toString(x);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user