Make sure netty detects the right java version when running on android. See #282

This commit is contained in:
norman 2012-04-26 15:31:04 +02:00
parent 1d4e5ac66d
commit 7c5ae2787d

View File

@ -71,11 +71,11 @@ public final class DetectionUtil {
private static int javaVersion0() {
try {
// Check if its android, if so handle it the same way as java5.
// Check if its android, if so handle it the same way as java6.
//
// See https://github.com/netty/netty/issues/282
Class.forName("android.app.Application");
return 5;
return 6;
} catch (ClassNotFoundException e) {
//Ignore
}