Commit d0232af2 authored by Riegel's avatar Riegel
Browse files

Refactor: Remove unused functions

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 1 addition and 10 deletions
+1 -10
......@@ -39,6 +39,7 @@ public class CityGmlZipEntry implements Serializable {
}
if (errorType != null){
logger.warn("Tried loading erroneous CityGmlZipEntry");
return;
}
try{
CityGmlParser.gagLogger(true);
......@@ -92,12 +93,6 @@ public class CityGmlZipEntry implements Serializable {
this.parentArchive = parentArchive;
}
protected CityGmlZipEntry(String fileName, boolean decompressed) {
this.fileName = fileName;
this.model = null;
this.decompressed = decompressed;
}
public void setArchive(CityGmlZipArchive archive){
parentArchive = archive;
}
......@@ -107,10 +102,6 @@ public class CityGmlZipEntry implements Serializable {
}
public boolean isValidated(){
return validated;
}
public String getFileName() {
return fileName;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment