disable winping.dll for 64-bit windows until I will be able to compile it for 64-bit

This commit is contained in:
Anton Keks 2011-05-20 21:18:48 +03:00
parent 856dd72b5e
commit 1fd938a2cd

View File

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