diff --git a/core/src/avm2/globals/flash/system/IME.as b/core/src/avm2/globals/flash/system/IME.as index f7b6a0172320..7f4f6a13ea05 100644 --- a/core/src/avm2/globals/flash/system/IME.as +++ b/core/src/avm2/globals/flash/system/IME.as @@ -13,10 +13,10 @@ package flash.system public final class IME extends EventDispatcher { // The conversion mode of the current IME. - public static var _conversionMode: String = "ALPHANUMERIC_HALF"; + private static var _conversionMode: String = "ALPHANUMERIC_HALF"; // Indicates whether the system IME is enabled (true) or disabled (false). - public static var _enabled: Boolean; + private static var _enabled: Boolean; // The isSupported property is set to true if the IME class is available on the current platform, otherwise it is set to false. private static var _isSupported: Boolean;