summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2009-09-29 11:08:32 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-09-29 11:08:32 -0700
commitf0aa85668719780c51889af032ed4714dcb9bf82 (patch)
tree462aab5815da38ccc47d506bd46993783dc23fe7 /tools
parent4f588a959d7dc09cf6f52297338924a7d13dcc93 (diff)
parent25c70dd9a13a0ff631e4d3911fceaea863ec2586 (diff)
downloadframeworks_base-f0aa85668719780c51889af032ed4714dcb9bf82.zip
frameworks_base-f0aa85668719780c51889af032ed4714dcb9bf82.tar.gz
frameworks_base-f0aa85668719780c51889af032ed4714dcb9bf82.tar.bz2
am 25c70dd9: am 279ba943: Merge change I7c7b1596 into eclair
Merge commit '25c70dd9a13a0ff631e4d3911fceaea863ec2586' * commit '25c70dd9a13a0ff631e4d3911fceaea863ec2586': Fix a warning output.
Diffstat (limited to 'tools')
-rw-r--r--tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeTypedArray.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeTypedArray.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeTypedArray.java
index daba8cfd..957f737 100644
--- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeTypedArray.java
+++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/BridgeTypedArray.java
@@ -673,7 +673,8 @@ public final class BridgeTypedArray extends TypedArray {
// looks like we were unable to resolve the drawable
mContext.getLogger().warning(String.format(
- "Unable to resolve drawable \"%1$s\" in attribute \"%2$s\"", value, mNames[index]));
+ "Unable to resolve drawable \"%1$s\" in attribute \"%2$s\"", stringValue,
+ mNames[index]));
return null;
}