Browse Source

[jvm] embrace the Java way

Simon Krajewski 5 năm trước cách đây
mục cha
commit
eb9a513521
1 tập tin đã thay đổi với 1 bổ sung4 xóa
  1. 1 4
      src/generators/jvm/jvmFunctions.ml

+ 1 - 4
src/generators/jvm/jvmFunctions.ml

@@ -181,10 +181,7 @@ class typed_functions = object(self)
 			)
 		) in
 		let def = (fun () ->
-			jm#construct ConstructInit (["haxe"],"Exception") (fun () ->
-				jm#string "Invalid call";
-				[object_sig]
-			);
+			jm#construct ConstructInit (["java";"lang"],"IllegalArgumentException") (fun () -> []);
 			jm#get_code#athrow;
 			jm#set_terminated true;
 		) in