OSDN Git Service

Fix build.
authorDianne Hackborn <hackbod@google.com>
Tue, 17 Nov 2009 01:59:32 +0000 (17:59 -0800)
committerDianne Hackborn <hackbod@google.com>
Tue, 17 Nov 2009 01:59:32 +0000 (17:59 -0800)
Change-Id: I70c86738e2894d7f8c51034aea8fda1585a6fcb3

tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeAssetManager.java

index 06dd96f..6c1b5b3 100644 (file)
@@ -32,21 +32,21 @@ public class BridgeAssetManager extends AssetManager {
      * {@link Bridge} calls this method after setting up a new bridge.
      */
     /*package*/ static AssetManager initSystem() {
-        if (!(AssetManager.mSystem instanceof BridgeAssetManager)) {
+        if (!(AssetManager.sSystem instanceof BridgeAssetManager)) {
             // Note that AssetManager() creates a system AssetManager and we override it
             // with our BridgeAssetManager.
-            AssetManager.mSystem = new BridgeAssetManager();
-            AssetManager.mSystem.makeStringBlocks(false);
+            AssetManager.sSystem = new BridgeAssetManager();
+            AssetManager.sSystem.makeStringBlocks(false);
         }
-        return AssetManager.mSystem;
+        return AssetManager.sSystem;
     }
     
     /**
-     * Clears the static {@link AssetManager#mSystem} to make sure we don't leave objects
+     * Clears the static {@link AssetManager#sSystem} to make sure we don't leave objects
      * around that would prevent us from unloading the library.
      */
     /*package*/ static void clearSystem() {
-        AssetManager.mSystem = null;
+        AssetManager.sSystem = null;
     }
     
     private BridgeAssetManager() {