Skip to content

Commit

Permalink
Remove unreachable exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
MarloDelatorre committed Aug 25, 2024
1 parent edceb81 commit 9544d36
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
This file is part of the OdinMS Maple Story Server
o This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <[email protected]>
Matthias Butz <[email protected]>
Jan Christian Meyer <[email protected]>
Expand All @@ -21,8 +21,6 @@
*/
package net.server.handlers.login;

import java.io.UnsupportedEncodingException;
import java.security.NoSuchAlgorithmException;
import java.sql.Connection;
import java.sql.Date;
import java.sql.PreparedStatement;
Expand Down Expand Up @@ -82,7 +80,7 @@ public final void handlePacket(InPacket p, Client c) {
rs.next();
c.setAccID(rs.getInt(1));
}
} catch (SQLException | NoSuchAlgorithmException | UnsupportedEncodingException e) {
} catch (SQLException e) {
c.setAccID(-1);
e.printStackTrace();
} finally {
Expand Down

0 comments on commit 9544d36

Please sign in to comment.