sorald.processor.SerialVersionUidProcessor.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorald Show documentation
Show all versions of sorald Show documentation
An automatic repair system for static code analysis warnings from Sonar Java.
The repair consists of add a serialVersionUID to classes implementing Serializable
Example:
```diff
public class NoUID implements Serializable {
+ private static final long serialVersionUID = 1L;
}
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy