Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
optyfr committed Sep 28, 2021
1 parent ed9ba1f commit 56e6b43
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion JRomManager/src-server/jrm/server/Server.java
Expand Up @@ -73,7 +73,6 @@ public static void parseArgs(String... args) throws NumberFormatException, IOExc
catch(ParseException e)
{
Log.err(e.getMessage(), e);
e.printStackTrace();
new HelpFormatter().printHelp("Server", options);
System.exit(1);
}
Expand Down
Expand Up @@ -2,7 +2,6 @@

import java.io.IOException;
import java.io.InputStream;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
Expand Down
1 change: 0 additions & 1 deletion JRomManager/src/jrm/profile/Profile.java
Expand Up @@ -32,7 +32,6 @@
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.TreeMap;
Expand Down
4 changes: 3 additions & 1 deletion JRomManager/src/jrm/profile/data/Sources.java
@@ -1,11 +1,13 @@
package jrm.profile.data;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Iterator;

import lombok.Getter;

public class Sources implements Iterable<Source>
@SuppressWarnings("serial")
public class Sources implements Serializable, Iterable<Source>
{
private final @Getter ArrayList<Source> srces = new ArrayList<>();

Expand Down
2 changes: 1 addition & 1 deletion JRomManager/test-cli/jrm/test/cli/CliTest.java
@@ -1,5 +1,5 @@
package jrm.test.cli;

class CliTest
class CliTest //NOSONAR
{
}
@@ -1,5 +1,5 @@
package jrm.test.standalone;

class StandaloneTest
class StandaloneTest //NOSONAR
{
}
2 changes: 1 addition & 1 deletion JRomManager/test/jrm/test/core/CoreTest.java
@@ -1,6 +1,6 @@
package jrm.test.core;

class CoreTest
class CoreTest //NOSONAR
{

}

0 comments on commit 56e6b43

Please sign in to comment.