summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-01-30 13:17:48 +0200
committerArtur Signell <artur@vaadin.com>2013-01-30 13:17:48 +0200
commitaf82e142c37e08bbda7e3869072460c92f1fb575 (patch)
tree6d659c18cae1c8e3c3a8def1e1f40207d32599e5 /server
parente73643afce3045af0c1e21eac1415358936b3179 (diff)
downloadvaadin-framework-af82e142c37e08bbda7e3869072460c92f1fb575.tar.gz
vaadin-framework-af82e142c37e08bbda7e3869072460c92f1fb575.zip
Do not throw NPE when asking for a null propertyId (#10445)
Change-Id: If788d84c66d640368989e443394505600ad12439
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/data/util/IndexedContainer.java3
-rw-r--r--server/tests/src/com/vaadin/data/util/TestIndexedContainer.java8
2 files changed, 10 insertions, 1 deletions
diff --git a/server/src/com/vaadin/data/util/IndexedContainer.java b/server/src/com/vaadin/data/util/IndexedContainer.java
index 1705365f60..306f9cf23b 100644
--- a/server/src/com/vaadin/data/util/IndexedContainer.java
+++ b/server/src/com/vaadin/data/util/IndexedContainer.java
@@ -166,7 +166,8 @@ public class IndexedContainer extends
public Property getContainerProperty(Object itemId, Object propertyId) {
// map lookup more efficient than propertyIds if there are many
// properties
- if (!containsId(itemId) || !types.containsKey(propertyId)) {
+ if (!containsId(itemId) || propertyId == null
+ || !types.containsKey(propertyId)) {
return null;
}
diff --git a/server/tests/src/com/vaadin/data/util/TestIndexedContainer.java b/server/tests/src/com/vaadin/data/util/TestIndexedContainer.java
index 971cdb5f62..09e5a26c15 100644
--- a/server/tests/src/com/vaadin/data/util/TestIndexedContainer.java
+++ b/server/tests/src/com/vaadin/data/util/TestIndexedContainer.java
@@ -384,4 +384,12 @@ public class TestIndexedContainer extends AbstractInMemoryContainerTest {
assertNull(ic.getContainerProperty(object1, "xyz"));
}
+ // test getting null property id (#10445)
+ public void testNullPropertyId() {
+ IndexedContainer ic = new IndexedContainer();
+ String object1 = new String("Obj1");
+ ic.addItem(object1);
+ assertNull(ic.getContainerProperty(object1, null));
+ }
+
}