We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I've noticed an error
package com.google.zxing; public enum DecodeHintType { OTHER(java.lang.Object.class), PURE_BARCODE(java.lang.Void.class), POSSIBLE_FORMATS(java.util.List.class), TRY_HARDER(java.lang.Void.class), CHARACTER_SET(java.lang.String.class), ALLOWED_LENGTHS(r0), // <<< ASSUME_CODE_39_CHECK_DIGIT(java.lang.Void.class), ASSUME_GS1(java.lang.Void.class), RETURN_CODABAR_START_END(java.lang.Void.class), NEED_RESULT_POINT_CALLBACK(com.google.zxing.ResultPointCallback.class), ALLOWED_EAN_EXTENSIONS(r0); // <<< private final java.lang.Class<?> valueType; static { java.lang.Class<int[]> cls = int[].class; // weird useless declaration } private DecodeHintType(java.lang.Class<?> cls) { this.valueType = cls; } public java.lang.Class<?> getValueType() { return this.valueType; } }
APK: https://drive.google.com/file/d/1ICfL4A22K-KhVkw5RwvWdLJA8111iYvG/view?usp=sharing
The text was updated successfully, but these errors were encountered:
fix: inline class constants to fix enum transform (#916)
2207cd7
@sergey-wowwow fixed exactly this case. For other possible cases, comment with a warning will be printed.
Sorry, something went wrong.
Thanks, will check it to find other possible errors
No branches or pull requests
Hi, I've noticed an error
APK: https://drive.google.com/file/d/1ICfL4A22K-KhVkw5RwvWdLJA8111iYvG/view?usp=sharing
The text was updated successfully, but these errors were encountered: