Skip to content

Commit

Permalink
Clean up unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
t-kameyama committed Mar 25, 2016
1 parent e213a92 commit f88bc63
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion src/main/java/spark/utils/CollectionUtils.java
Expand Up @@ -17,7 +17,6 @@
package spark.utils;

import java.util.Collection;
import java.util.Map;

/**
* Miscellaneous collection utility methods.
Expand Down
1 change: 0 additions & 1 deletion src/test/java/spark/GzipTest.java
Expand Up @@ -27,7 +27,6 @@

import static org.junit.Assert.assertEquals;
import static spark.Spark.awaitInitialization;
import static spark.Spark.staticFileLocation;
import static spark.Spark.stop;

/**
Expand Down
Expand Up @@ -10,7 +10,6 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.powermock.api.mockito.PowerMockito.mockStatic;

public class WebSocketCreatorFactoryTest {

Expand Down
Expand Up @@ -21,10 +21,6 @@

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import spark.Filter;
import spark.Request;
import spark.Response;
import spark.Route;

/**
* Example showing the use of attributes
Expand Down
4 changes: 0 additions & 4 deletions src/test/java/spark/examples/session/SessionExample.java
Expand Up @@ -3,10 +3,6 @@
import static spark.Spark.get;
import static spark.Spark.post;

import spark.Request;
import spark.Response;
import spark.Route;

public class SessionExample {
private static final String SESSION_NAME = "username";

Expand Down
1 change: 0 additions & 1 deletion src/test/java/spark/examples/simple/SimpleExample.java
Expand Up @@ -17,7 +17,6 @@
package spark.examples.simple;

import static spark.Spark.*;
import static spark.Spark.post;

/**
* A simple example just showing some basic functionality
Expand Down
1 change: 0 additions & 1 deletion src/test/java/spark/utils/CollectionUtilsTest.java
Expand Up @@ -4,7 +4,6 @@

import java.util.ArrayList;
import java.util.Collection;
import java.util.Set;

import static org.junit.Assert.*;

Expand Down
1 change: 0 additions & 1 deletion src/test/java/spark/utils/SparkUtilsTest.java
@@ -1,7 +1,6 @@
package spark.utils;

import org.junit.Test;
import spark.Spark;

import java.util.Arrays;
import java.util.List;
Expand Down

0 comments on commit f88bc63

Please sign in to comment.