Skip to content

Commit

Permalink
Update TitleMapper.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Dec 8, 2024
1 parent b0ad44f commit fea75d3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dao/TitleMapper.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package dao;

import java.net.MalformedURLException;
import java.net.URL;
import java.sql.ResultSet;
import java.sql.SQLException;
Expand Down Expand Up @@ -49,7 +48,7 @@ public LineEntry mapRow(ResultSet rs, int rowNum) throws SQLException {
entry.setEntryTags(SetAndStr.toSet(rs.getString("EntryTags")));
entry.setIcon_bytes(rs.getBytes("icon_bytes"));
entry.setIcon_url(rs.getString("icon_url"));
} catch (MalformedURLException e) {
} catch (Exception e) {
e.printStackTrace();
}
}
Expand Down

0 comments on commit fea75d3

Please sign in to comment.