Browse Source

fix: Constructor

Martin Passard 6 years ago
parent
commit
8ecf73c7bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/data/CoveredAreas.java

+ 1 - 1
src/data/CoveredAreas.java

@@ -26,7 +26,7 @@ public class CoveredAreas {
 	}
 
 	public CoveredAreas(String name, ISP isp, List<TechnoCoverage> techno) {
-		this(name,isp,techno,null);
+		this(name,isp,techno,new Polygon());
 	}
 	
 	public CoveredAreas(String name, List<TechnoCoverage> techno) {