Project

General

Profile

« Previous | Next » 

Revision 9e57572e

Added by Andreas Kohlbecker about 5 years ago

ref #7833 fixing null-view bug

View differences:

src/main/java/eu/etaxonomy/vaadin/ui/navigation/NavigationEvent.java
9 9
	public NavigationEvent(String viewName, String ... parameters) {
10 10
	    StringBuilder sb = new StringBuilder(viewName);
11 11
        for(String p : parameters){
12
            sb.append(SEPARATOR).append(p);
12
            if(p != null){
13
                sb.append(SEPARATOR).append(p);
14
            }
13 15
        }
14 16
        this.viewName = sb.toString();
15 17
    }

Also available in: Unified diff