Is there any way to prevent kotlin compiler from g...
# announcements
s
Is there any way to prevent kotlin compiler from generation methods like:
Copy code
// $FF: synthetic method
   // $FF: bridge method
   public Number getId() {
      return (Number)this.getId();
   }
? For now i have serialisation problem with firebase because of methods name clash Found a workaround for this issue by annotating original getter as
@get:Exclude
, any other possible workaround here?