Removed unnecessary TODO lines.

This commit is contained in:
sigonasr2 2017-05-31 22:12:45 -05:00
parent 26723cc5f0
commit b8b1da3dfc
2 changed files with 0 additions and 2 deletions

Binary file not shown.

View File

@ -61,7 +61,6 @@ public class PluginManager implements Runnable{
try {
url = new URL(plugins.get(i).url);
} catch (MalformedURLException e2) {
// TODO Auto-generated catch block
e2.printStackTrace();
}
if (url!=null) {
@ -71,7 +70,6 @@ public class PluginManager implements Runnable{
httpCon = (HttpURLConnection) url.openConnection();
httpCon.setRequestMethod("HEAD");
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if (httpCon!=null) {