Removed Rc4Obtainer.DEBUG condition from printing stack traces

This commit is contained in:
Dorving 2022-04-11 05:06:00 +02:00
parent c2c0e2b0cb
commit 4bfa5d6b84

View File

@ -145,15 +145,13 @@ public class Rc4Obtainer {
return true; return true;
} }
} catch (Exception e) { } catch (Exception e) {
if (DEBUG) e.printStackTrace();
e.printStackTrace();
} }
} }
} }
} }
} catch (Exception e) { } catch (Exception e) {
if (DEBUG) e.printStackTrace();
e.printStackTrace();
} }
return false; return false;
} }