-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
java-api/src/java9/java/xyz/wagyourtail/jvmdg/j9/stub/java_base/J_L_StackTraceElement.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package xyz.wagyourtail.jvmdg.j9.stub.java_base; | ||
|
||
import xyz.wagyourtail.jvmdg.version.Stub; | ||
|
||
public class J_L_StackTraceElement { | ||
|
||
@Stub | ||
public static String getClassLoaderName(StackTraceElement element) { | ||
return null; | ||
} | ||
|
||
@Stub | ||
public static String getModuleName(StackTraceElement element) { | ||
return null; | ||
} | ||
|
||
@Stub | ||
public static String getModuleVersion(StackTraceElement element) { | ||
return null; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters