Remove duplicate native (already implemented in bindings.ts)

This commit is contained in:
Marco Castelluccio 2015-02-03 23:13:39 +01:00
Родитель ab8f38effa
Коммит 16d941008b
1 изменённых файлов: 0 добавлений и 7 удалений

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

@ -280,13 +280,6 @@ Native["java/lang/Object.getClass.()Ljava/lang/Class;"] = function() {
return J2ME.getRuntimeKlass($.ctx.runtime, this.klass).classObject;
};
Native["java/lang/Object.hashCode.()I"] = function() {
var hashCode = this.hashCode;
while (!hashCode)
hashCode = this.hashCode = util.id();
return hashCode;
};
Native["java/lang/Object.wait.(J)V"] = function(timeout) {
$.ctx.wait(this, timeout.toNumber());
};