What does it mean if you get a NullPointerException on a closing brace in Java? Say, for example, right here:
SavedState() { this.iZone = DateTimeParserBucket.this.iZone; this.iOffset = DateTimeParserBucket.this.iOffset; this.iSavedFields = DateTimeParserBucket.this.iSavedFields; this.iSavedFieldsCount = DateTimeParserBucket.this.iSavedFieldsCount; } <-- Stack trace says NPE is thrown here This is in the stacktrace:
... Caused by: java.lang.NullPointerException at org.joda.time.format.DateTimeParserBucket$SavedState.<init>(DateTimeParserBucket.java:521) ~[joda-time-2.9.5.jar:2.9.5] ...