Let's see if it helps to have the enum outside the class.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5105 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2008-05-17 01:52:32 +00:00
parent 814ad6b1d7
commit 7a1ec4a3a1
5 changed files with 121 additions and 95 deletions
@@ -263,7 +263,7 @@ public abstract class InvocationTask extends Task
if (hint == null) {
return "Transport.DEFAULT";
}
return "Transport.getInstance(Transport.Type." +
return "Transport.getInstance(TransportType." +
hint.type().name() + ", " + hint.channel() + ")";
}