Skip to content
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

BigInteger invocation error for non-valued xdr enums (e.g. enum colors { RED, ORANGE, GREEN }) #55

Open
jfcjm opened this issue Sep 12, 2017 · 0 comments

Comments

@jfcjm
Copy link

jfcjm commented Sep 12, 2017

The following xdr definition triggers a NumberFormatException in jrpcgen.translateConstant :

enum colors { RED, ORANGE, GREEN };

Call resolves to new BigInteger("0+1+1",8) where the string "0+1+1" is not a valid number representation.

Remark : When the definition has only two elements (such as enum colors { RED, ORANGE}), there is no error as the call resolves to new BigInteger("0+1",8) where "0+1" is a valid octal representation...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant