Skip to content

Commit

Permalink
Revert an unwanted change from the PR
Browse files Browse the repository at this point in the history
  • Loading branch information
mukoki committed Oct 11, 2022
1 parent f41ae67 commit 1d2a1fa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ public void computeAdjustedFeatureUpdates(double distanceTolerance, boolean inte
// don't update geometry if it's not valid
// Debug.println(" adjusted geometry for : " + cgf.getFeature().getID() + " " +
// ((g==null)?"g=null ":"g!=null ") + (g.isValid()?"g.isValid()":"!g.isValid()"));
Feature f = cgf.getFeature();
// Feature f = originalFeat.clone(false);
Feature originalFeat = cgf.getFeature();
Feature f = originalFeat.clone(false);
f.setGeometry(g);
adjustedFC.add(f);
// record this feature as an update to the original
Expand Down

0 comments on commit 1d2a1fa

Please sign in to comment.