From 55e6d779fd8ee5c3609517373e2596d711702a49 Mon Sep 17 00:00:00 2001 From: Xavier Ducrohet Date: Fri, 14 Jan 2011 16:22:39 -0800 Subject: Fix build by updating ide-common to the new LayoutLog. Change-Id: If1a01daa87561f474b4c43d6c404a3c42e98d485 --- ide_common/src/com/android/ide/common/rendering/LayoutLibrary.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ide_common/src/com/android') diff --git a/ide_common/src/com/android/ide/common/rendering/LayoutLibrary.java b/ide_common/src/com/android/ide/common/rendering/LayoutLibrary.java index e1ce53b..a757c20 100644 --- a/ide_common/src/com/android/ide/common/rendering/LayoutLibrary.java +++ b/ide_common/src/com/android/ide/common/rendering/LayoutLibrary.java @@ -346,15 +346,15 @@ public class LayoutLibrary { ILayoutLog logWrapper = new ILayoutLog() { public void warning(String message) { - log.warning(null, message); + log.warning(null, message, null /*data*/); } public void error(Throwable t) { - log.error(null, "error!", t); + log.error(null, "error!", t, null /*data*/); } public void error(String message) { - log.error(null, message); + log.error(null, message, null /*data*/); } }; -- cgit v1.1