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
@@ -26,7 +26,7 @@ import java.lang.annotation.Target;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import com.threerings.presents.net.TransportType;
import com.threerings.presents.net.Transport;
/**
* An annotation indicating the type of transport desired for a distributed object
@@ -37,7 +37,7 @@ import com.threerings.presents.net.TransportType;
public @interface TransportHint
{
/** The type of transport to use. */
TransportType type () default TransportType.RELIABLE_ORDERED;
Transport.Type type () default Transport.Type.RELIABLE_ORDERED;
/** For ordered transport types, the channel to use. */
int channel () default 0;