Removed Zuhause-ETS5 from version control

This commit is contained in:
Patrick Haßel 2021-11-09 10:15:53 +01:00
parent febb198c93
commit 5b769dd8ce
3 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/data/
/target/ /target/
/.idea/ /.idea/
/.jpb/ /.jpb/

@ -1 +0,0 @@
Subproject commit b362ae703f89547339ad5762714b1f6c999429fa

View File

@ -24,7 +24,7 @@ public class KnxGroupImportService {
public void importGroups() { public void importGroups() {
knxGroupRepository.findAll().forEach(knxGroup -> knxGroup.setEts(false)); knxGroupRepository.findAll().forEach(knxGroup -> knxGroup.setEts(false));
try { try {
Jsoup.parse(new File("./Zuhause-ETS5/G"), "UTF-8").select("GA").forEach(this::importGroup); Jsoup.parse(new File("./data/Zuhause-ETS5/G"), "UTF-8").select("GA").forEach(this::importGroup);
} catch (IOException e) { } catch (IOException e) {
log.error("Failed to import KnxGroups: {}", e.toString()); log.error("Failed to import KnxGroups: {}", e.toString());
} }