Removed unnecessary exception

This commit is contained in:
Manindra Moharana
2015-08-28 21:00:06 -07:00
parent e8b4806cfd
commit 2e0d96e58e

View File

@@ -861,14 +861,8 @@ public class ErrorCheckerService implements Runnable {
e2.printStackTrace();
}
}
} else {
System.err.format("Cannot find \"%s\" library. Line %d in tab %s%n",
entry, impstat.getLineNumber(),
editor.getSketch().getCode(impstat.getTab()).getPrettyName());
}
} else {
new Exception("Error while handling '" + entry + "'", e).printStackTrace();
}
}
}