Skip to content

Commit

Permalink
Bugfix: correct call chain
Browse files Browse the repository at this point in the history
  • Loading branch information
prasser committed Jun 13, 2017
1 parent 0fee0b9 commit a27d7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/org/deidentifier/arx/ARXResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ public void progress(double progress) {
* @return The number of optimized records
*/
public int optimize(DataHandle handle, double gsFactor, ARXListener listener) throws RollbackRequiredException {
return optimizeFast(handle, gsFactor, Double.NaN, listener);
return optimizeFast(handle, Double.NaN, gsFactor, listener);
}

/**
Expand Down

0 comments on commit a27d7f9

Please sign in to comment.