Skip to content

Commit

Permalink
avm2: IME _private fields should be private
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinnerbone committed Jul 29, 2024
1 parent bcba625 commit de8e9b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/avm2/globals/flash/system/IME.as
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit de8e9b6

Please sign in to comment.