mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 10:48:46 +00:00
Update StatementInjector for missing rsReturns
This commit is contained in:
parent
d42013a07e
commit
f4d1458eb7
@ -572,7 +572,10 @@ public class StatementInjector extends MariaDbConnection {
|
||||
|
||||
@Override
|
||||
public boolean next() throws SQLException {
|
||||
return !rsReturns.isEmpty();
|
||||
if (rsReturns != null) {
|
||||
return !rsReturns.isEmpty();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user