Ignore:
Timestamp:
2013-11-03T01:06:23+01:00 (12 years ago)
Author:
Don-vip
Message:

Checkstyle:

  • private constructors for util classes
  • final classes
  • missing "else" statements
  • import cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Geometry.java

    r6316 r6362  
    3030 * @author viesturs
    3131 */
    32 public class Geometry {
     32public final class Geometry {
     33   
     34    private Geometry() {
     35        // Hide default constructor for utils classes
     36    }
     37   
    3338    public enum PolygonIntersection {FIRST_INSIDE_SECOND, SECOND_INSIDE_FIRST, OUTSIDE, CROSSING}
    3439
Note: See TracChangeset for help on using the changeset viewer.