Procházet zdrojové kódy

Improve error message for missing class name id (#14643)

Change-Id: I71a96985fab62b648207393916566f3e1d757ad1
tags/7.4.0.beta1
Leif Åstrand před 9 roky
rodič
revize
38125ebc3b

+ 5
- 1
client/src/com/vaadin/client/ApplicationConfiguration.java Zobrazit soubor

@@ -547,7 +547,11 @@ public class ApplicationConfiguration implements EntryPoint {

String getUnknownServerClassNameByTag(int tag) {
if (unknownComponents != null) {
return unknownComponents.get(tag);
String className = unknownComponents.get(tag);
if (className == null) {
className = "unknown class with id " + tag;
}
return className;
}
return null;
}

Načítá se…
Zrušit
Uložit