We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ebda5e commit 1c24d0aCopy full SHA for 1c24d0a
src/de/inetsoftware/jwebassembly/api/java/lang/ReplacementForThrowable.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2019 Volker Berlin (i-net software)
+ * Copyright 2020 Volker Berlin (i-net software)
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -31,4 +31,12 @@ class ReplacementForThrowable {
31
ReplacementForThrowable() {
32
// nothing
33
}
34
+
35
+ /**
36
+ * Replacement for fillInStackTrace()
37
+ */
38
+ @Replace( "java/lang/Throwable.fillInStackTrace()Ljava/lang/Throwable;" )
39
+ private static Throwable fillInStackTrace( Throwable this_ ) {
40
+ return this_;
41
+ }
42
0 commit comments