Skip to content

Commit

Permalink
fix "Boxed variable is never null" warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
mprins committed Dec 10, 2024
1 parent 7a171e9 commit 880498c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -536,14 +536,14 @@ private static int getMutations(DataSource ds, String... opts) {
String autoProcessen = "select id FROM automatisch_proces where dtype = 'GDS2OphaalProces'";
ResultSet rs = stmt.executeQuery(autoProcessen);
while (rs.next()) {
Long id = rs.getLong(1);
long id = rs.getLong(1);
LOG.info("Ophalen laadprocessen voor automatisch proces: " + id);
String processen =
"select id,bestand_naam from laadproces where automatisch_proces = " + id;
Statement laadprocesStmt = con.createStatement();
ResultSet lpRs = laadprocesStmt.executeQuery(processen);
while (lpRs.next()) {
Long lpId = lpRs.getLong(1);
long lpId = lpRs.getLong(1);
String bestandsNaam = lpRs.getString(2);
String berichten =
"select id, br_orgineel_xml, object_ref from bericht where laadprocesid = " + lpId;
Expand Down

0 comments on commit 880498c

Please sign in to comment.