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