Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland committed Dec 7, 2023
1 parent 9bae2ab commit f4531a8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ private void getProcedureInfo(Graph graph) {
ResultSet resultSet = graph.callProcedure(graphId, procedure);
List<String> newData = new ArrayList<>();
int i = 0;
while (resultSet.hasNext()) {
Record record = resultSet.next();
for(Record record : resultSet){
if(i >= data.size()){
newData.add(record.getString(0));
}
Expand Down

0 comments on commit f4531a8

Please sign in to comment.