Fix a compilation error

This commit is contained in:
Trustin Lee 2012-11-10 08:51:59 +09:00
parent 5d45880b9e
commit 1cc104e1c0

View File

@ -22,12 +22,13 @@ import java.nio.channels.spi.AbstractSelectableChannel;
import java.nio.channels.spi.SelectorProvider; import java.nio.channels.spi.SelectorProvider;
import java.util.Set; import java.util.Set;
@SuppressWarnings("all")
public abstract class SctpServerChannel extends AbstractSelectableChannel { public abstract class SctpServerChannel extends AbstractSelectableChannel {
static { static {
UnsupportedOperatingSystemException.raise(); UnsupportedOperatingSystemException.raise();
} }
public static SctpServerChannel open() { public static SctpServerChannel open() throws IOException {
return null; return null;
} }