All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sorald.processor.SerialVersionUidProcessor.md Maven / Gradle / Ivy

Go to download

An automatic repair system for static code analysis warnings from Sonar Java.

There is a newer version: 0.8.6
Show newest version
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