summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page
diff options
context:
space:
mode:
authorSimon Rettberg2016-01-26 15:17:27 +0100
committerSimon Rettberg2016-01-26 15:17:27 +0100
commitfbbf386950d4679d3d5e3fe0b510eff985599d6b (patch)
tree4d60de5adc659f3816e1c5e6861a28dc328c7ad0 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page
parent[client] fix text cutoff on location tree's root (diff)
downloadtutor-module-fbbf386950d4679d3d5e3fe0b510eff985599d6b.tar.gz
tutor-module-fbbf386950d4679d3d5e3fe0b510eff985599d6b.tar.xz
tutor-module-fbbf386950d4679d3d5e3fe0b510eff985599d6b.zip
[client] Fix NPE
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureLocationSelectionPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureLocationSelectionPage.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureLocationSelectionPage.java
index 7d25eb59..31c2782c 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureLocationSelectionPage.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureLocationSelectionPage.java
@@ -29,7 +29,7 @@ public class LectureLocationSelectionPage extends LectureLocationSelectionPageLa
private boolean updateState() {
List<Integer> locations = locationSelector.getSelectedLocationsAsIds();
boolean locationExclusive = locationSelector.getOnlyInSelection();
- if (locations.size() > Session.getSatelliteConfig().maxLocationsPerLecture) {
+ if (locations != null && locations.size() > Session.getSatelliteConfig().maxLocationsPerLecture) {
setErrorMessage("Zu viele Räume/Orte ausgewählt");
locationSelector.setSelectedLocationsAsIds(locations);
locationSelector.collapseFullySelectedNodes();