The problem was elsewhere, so revert the last couple of changes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5106 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2008-05-18 06:59:16 +00:00
parent 7a1ec4a3a1
commit 117fb1a67b
5 changed files with 103 additions and 127 deletions
@@ -219,7 +219,7 @@ public class GenDObjectTask extends Task
transport = "DEFAULT";
} else {
transport = "getInstance(\n" +
" com.threerings.presents.net.TransportType." +
" com.threerings.presents.net.Transport.Type." +
hint.type().name() + ", " + hint.channel() + ")";
}
ctx.put("transport", "com.threerings.presents.net.Transport." + transport);
@@ -263,7 +263,7 @@ public abstract class InvocationTask extends Task
if (hint == null) {
return "Transport.DEFAULT";
}
return "Transport.getInstance(TransportType." +
return "Transport.getInstance(Transport.Type." +
hint.type().name() + ", " + hint.channel() + ")";
}