generated lambda types are now being removed from live bean type to improve bean change detection mechanism

This commit is contained in:
Martin Lippert
2018-08-10 15:40:00 +02:00
parent 72fe640c9f
commit c953ff93c1

View File

@@ -102,6 +102,11 @@ public class LiveBean {
if (chop >= 0) {
type = type.substring(0, chop);
}
chop = type.indexOf("$$Lambda$");
if (chop >= 0) {
type = type.substring(0, chop);
}
}
}