This commit is contained in:
jfrijters 2005-11-14 09:12:08 +00:00
Родитель 1c974ec7d0
Коммит 97c51cb18b
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -233,6 +233,7 @@ public final class SelectorImpl extends AbstractSelector
}
} while(read.get_Count() == 0 && write.get_Count() == 0 && !unhandledWakeup);
// TODO result should be set correctly
read.Remove(notifySocket);
result = read.get_Count() + write.get_Count();
}
else
@ -265,6 +266,7 @@ public final class SelectorImpl extends AbstractSelector
}
} while(timeout > 0 && read.get_Count() == 0 && write.get_Count() == 0 && !unhandledWakeup);
// TODO result should be set correctly
read.Remove(notifySocket);
result = read.get_Count() + write.get_Count();
}
}

Просмотреть файл

@ -163,7 +163,7 @@ public class NetExp
private static bool IsGenericType(java.lang.Class c)
{
// HACK huge hack, we look for the backtick
return c.getName().IndexOf("_0060") > 0;
return c.getName().IndexOf("$$0060") > 0;
}
private static void ProcessClass(string assemblyName, java.lang.Class c, java.lang.Class outer)