allow WindowsPinger for 64-bit windows

This commit is contained in:
Anton Keks 2013-02-01 18:18:47 +02:00
parent d824a19112
commit bd7bb0cf0e

View File

@ -37,7 +37,7 @@ public class PingerRegistry {
this.scannerConfig = scannerConfig;
pingers = new LinkedHashMap<String, Class<? extends Pinger>>();
if (Platform.WINDOWS && !Platform.ARCH_64) {
if (Platform.WINDOWS) {
// this will be the preferred choice for Windows users
pingers.put("pinger.windows", WindowsPinger.class);
}