-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace esriFieldTypeNumber by esriFieldTypeSingle #2335
Conversation
"Number" is not a valid esriFieldType and "Single" is
@@ -61,7 +61,7 @@ public static GisAttributeType fromString(String strType) throws ArcgisException | |||
case "Integer": | |||
case "SmallInteger": | |||
return GisAttributeType.INTEGER; | |||
case "Number": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CHANGES_NEXT_RELEASE entry regarding this change should be included.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CHANGES_NEXT_RELEASE entry regarding this change should be included.
Included in df6ae3a
Co-authored-by: Fermín Galán Márquez <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
"Number" is not a valid esriFieldType and "Single" is
#2334