commit | e11cc574058fa3611daf530c8bb6f3386268ad42 | [log] [tgz] |
---|---|---|
author | amitmanjhi@google.com <amitmanjhi@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Sun Feb 08 21:14:33 2009 +0000 |
committer | amitmanjhi@google.com <amitmanjhi@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Sun Feb 08 21:14:33 2009 +0000 |
tree | 128fd2271086ecd0b1d56797db02dcdc426b7fe7 | |
parent | 2b7639966e186330cf90ad47843ac5537efe1666 [diff] |
Simple patch to fix the trunk build breakage. Patch by: amitmanjhi Review by: jat (TBR) git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@4668 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java b/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java index bb44a7d..f40bfe9 100644 --- a/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java +++ b/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java
@@ -673,7 +673,7 @@ * class is loaded. */ if (!classRewriter.isJsoIntf(className)) { - CompilationUnit unit = getUnitForClassName(className); + CompilationUnit unit = getUnitForClassName(canonicalizeClassName(className)); if (unit != null) { toInject.push(unit); }