Skip to content

Commit

Permalink
- removing unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
emarx committed Apr 24, 2017
1 parent b949a35 commit c5b8ff7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kbox.core/src/main/java/org/aksw/kbox/utils/URLUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;

public class URLUtils {
public static URL[] stringToURL(String... urls) throws Exception {
URL[] urlArray = new URL[urls.length];
URL[] urlArray = new URL[urls.length];
for(int i=0; i < urls.length; i++) {
urlArray[i] = new URL(urls[i]);
}
Expand Down

0 comments on commit c5b8ff7

Please sign in to comment.