Page 1 of 1

About Question enthuware.ocpjp.v11.2.3657 :

Posted: Tue Mar 23, 2021 8:33 pm
by barrantesgerman
@Retention(RetentionPolicy.RUNTIME) public @interface JSONField {     public String name() = ""; }
it's not valid
should be
@Retention(RetentionPolicy.RUNTIME) public @interface JSONField { public String name() default ""; }

Re: About Question enthuware.ocpjp.v11.2.3657 :

Posted: Tue Mar 23, 2021 10:12 pm
by admin
You are right. Fixed.
thank you for your feedback!