Merge pull request #325 from DevFactory/utility-classes-should-not-have-public-constructors-fix-3

Utility classes should not have public constructors
This commit is contained in:
Ilkka Seppälä
2015-12-30 19:55:25 +02:00
7 changed files with 21 additions and 0 deletions

View File

@@ -18,6 +18,9 @@ import java.util.Map;
*/
public class RainbowFishSerializer {
private RainbowFishSerializer() {
}
/**
* Write V1 RainbowFish to file
*/