-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Extra content after end of an array is ignored #3977
Comments
This also applies to curly brackets. Example: |
@marekkrk thank you for reporting! 🙏🏼 I think either this should not be allowed, or at least have configuration to enable/disable. One question though. does your stated |
this is intended, you can enable FAIL_ON_TRAILING_TOKENS if you want |
Thanks, this solves the problem. But why is this not enabled by default? |
see #3406 and the linked discussion |
Describe the bug
Extra content after a square bracket that ends an array is ignored. Example:
[]abc
Version information
2.15.2
To Reproduce
Run the following code:
import com.fasterxml.jackson.databind.ObjectMapper;
public class ParseArray {
}
Expected behavior
A parse exception is thrown.
Additional context
No exception, an empty list is printed to standard out.
The text was updated successfully, but these errors were encountered: