7172770: Default Toolkit implementation return null value for property "awt.dynamicLayoutSupported"

Reviewed-by: anthony, art
This commit is contained in:
Sergey Bylokhov 2013-10-25 19:51:54 +04:00
parent 9cd10573ae
commit de4a41f994

View File

@ -1809,8 +1809,7 @@ public abstract class Toolkit {
// This property should never be cached
if (propertyName.equals("awt.dynamicLayoutSupported")) {
value = lazilyLoadDesktopProperty(propertyName);
return value;
return getDefaultToolkit().lazilyLoadDesktopProperty(propertyName);
}
value = desktopProperties.get(propertyName);