Skip to content

Commit

Permalink
Revert 'Optimize imports' done by IntelliJ
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenc committed Aug 7, 2017
1 parent f423738 commit a9dd157
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/java/org/apache/ivy/util/url/BasicURLHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@
import org.apache.ivy.util.FileUtil;
import org.apache.ivy.util.Message;

import java.io.*;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
Expand Down

1 comment on commit a9dd157

@twogee
Copy link
Contributor

@twogee twogee commented on a9dd157 Aug 8, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps this could be of use 😃
And, there's a related setting that was a subject of some discussion, "Insert imports for inner classes". Should we tick it (that would correspond to a prevalent style of coding for Ivy) or leave it as is?

Please sign in to comment.