https://github.com/sylvainlaurent/ch.slaurent.cleanup
An eclipse plugin for additional java source cleanup
https://github.com/sylvainlaurent/ch.slaurent.cleanup
Last synced: about 1 month ago
JSON representation
An eclipse plugin for additional java source cleanup
- Host: GitHub
- URL: https://github.com/sylvainlaurent/ch.slaurent.cleanup
- Owner: sylvainlaurent
- Created: 2013-08-14T19:49:04.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-27T21:05:39.000Z (over 11 years ago)
- Last Synced: 2024-04-16T11:00:23.875Z (about 1 year ago)
- Language: Java
- Size: 152 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Additional cleanup actions for Eclipse
## Features
- Remove redundant modifiers
- static on interface declaration
- public, abstract on methods in interfaces
- final on private methods
- Remove redundant throws
- unchecked exceptions declared in `throws` statement
- Exception class that inherits from another Exception class already declared in `throws` statement
- Can be used both as cleanup action and save action## Requirements
- Eclipse 4.x (only tested on 4.3.x)
- Java 6