Skip to content

Commit

Permalink
Class name alignment to JNetReflector one for nested classes
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed Sep 4, 2024
1 parent c26358c commit e104413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* The {@link UncaughtExceptionHandler} class represents a generic implementation of
* {@link Thread.UncaughtExceptionHandler}
*/
public class UncaughtExceptionHandler extends JCListener implements Thread.UncaughtExceptionHandler {
public class Thread_UncaughtExceptionHandler extends JCListener implements Thread.UncaughtExceptionHandler {
public UncaughtExceptionHandler(String key) throws JCNativeException {
super(key);
}
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Lang/Thread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class UncaughtExceptionHandler : JVMBridgeListener
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener_BridgeClassName.htm"/>
/// </summary>
public override string BridgeClassName => "org.mases.jnet.developed.java.lang.UncaughtExceptionHandler";
public override string BridgeClassName => "org.mases.jnet.developed.java.lang.Thread_UncaughtExceptionHandler";

/// <summary>
/// The <see cref="Action{Thread, JVMBridgeException}"/> to be executed
Expand Down

0 comments on commit e104413

Please sign in to comment.