You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In JJSchemaUtil.java file, please change the data range condition for attributes.minimum() to make it possible be less than -1. Sometimes, we need set the minimum value e.g. -10, which is less than -1.
···
if (attributes.minimum() > -1) {
node.put("minimum", attributes.minimum());
}
···
The text was updated successfully, but these errors were encountered:
In JJSchemaUtil.java file, please change the data range condition for attributes.minimum() to make it possible be less than -1. Sometimes, we need set the minimum value e.g. -10, which is less than -1.
···
if (attributes.minimum() > -1) {
node.put("minimum", attributes.minimum());
}
···
The text was updated successfully, but these errors were encountered: