-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Floating point comparison * Clean-up The variables are initialized in the constructor, and this using line seems to be unused. * Update Clipper.RectClip.cs Variable initialized in constructor. * This looked to be unnecessary * group is not used, remove unused using statement. min_area also not used. _solutionTree initialized in constructor. * Null check corrections Assuming that the user can supply nulls as input. This addresses parts of #802 One remaining issue is that there is a null check against a value returned from PathFromStr(), but that method always returns a non-null value, so the check would appear to be meaningless. * Clean up null checks These seem to be redundant due to outer checks. * More redundant null checks Also remove one unused variable (result) * Remove redundant base constructors Remove redundant .ToString() * Readability change The long while statement made this confusing to understand. Use braces to make the end of the statement and the action more apparent.
- Loading branch information
1 parent
7c91a18
commit ce4c338
Showing
6 changed files
with
27 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters