Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c2c3f commit 1097175Copy full SHA for 1097175
google-cloud-datastore/src/main/java/com/google/cloud/datastore/PathElement.java
@@ -128,7 +128,6 @@ static PathElement of(String kind) {
128
129
public static PathElement of(String kind, String name) {
130
checkArgument(!Strings.isNullOrEmpty(name), "name must not be empty or null");
131
- checkArgument(name.length() <= 500, "name must not exceed 500 characters");
132
return new PathElement(kind, name, null);
133
}
134
0 commit comments