Merge pull request #1029 from marco-c/remove_duplicate_native

Remove duplicate native (already implemented in bindings.ts)
This commit is contained in:
Yuan Xulei 2015-02-04 10:44:18 +08:00
Родитель 9f0e0cb9bc 16d941008b
Коммит 362a029690
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());
};