From 7c6cff471b5ecde4dba2fca33e76270926fa768c Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 6 Oct 2006 01:48:54 +0000 Subject: [PATCH] InvocationService.InvocationListener is a special case and can't even go in the raw imports. Whee! git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4417 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/tools/InvocationTask.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/tools/InvocationTask.java b/src/java/com/threerings/presents/tools/InvocationTask.java index 7938ed169..35f997df0 100644 --- a/src/java/com/threerings/presents/tools/InvocationTask.java +++ b/src/java/com/threerings/presents/tools/InvocationTask.java @@ -134,7 +134,8 @@ public abstract class InvocationTask extends Task if (!samepkg && !sname.startsWith("InvocationService")) { imports.put(importify(mname), Boolean.TRUE); } - if (rawimports != null) { + if (rawimports != null && + !sname.equals("InvocationService.InvocationListener")) { rawimports.put(mname, Boolean.TRUE); } }