Skip to content

Commit

Permalink
npe fix in assignments popup
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Sep 7, 2020
1 parent 079c52f commit c477f9e
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -244,6 +244,9 @@ public UserProfileStorage getUserProfile() {

public PageStorage initPageStorage(String key) {
PageStorage pageStorage = null;
if (key == null) {
return pageStorage;
}
if (key.startsWith(KEY_OBJECT_LIST)) {
pageStorage = new ObjectListStorage();
pageStorageMap.put(key, pageStorage);
Expand Down

0 comments on commit c477f9e

Please sign in to comment.