]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.district.network.ui/src/org/simantics/district/network/ui/table/ImportTechTypeCSVHandler.java
Read tech type table data from model
[simantics/district.git] / org.simantics.district.network.ui / src / org / simantics / district / network / ui / table / ImportTechTypeCSVHandler.java
index 7ee841b4186f023057d725f48bc4983ff4151fcd..4f833fca58cd3356c60b3d7eb4cc37fbacef055d 100644 (file)
@@ -34,9 +34,10 @@ public class ImportTechTypeCSVHandler {
         String path = dialog.open();
         try {
             if (path != null) {
-                
+
                 Path p = Paths.get(path);
                 if (Files.exists(p)) {
+                    @SuppressWarnings("unused")
                     Map<String, Integer> readCSVHeader = DistrictImportUtils.readCSVHeader(p, ';', true);
                     TechTypeTableView.table.setTechTypePath(path);
                 } else {