Skip to content

Commit

Permalink
Update class mismatch of Launch method location
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed Jul 30, 2024
1 parent 2cd1256 commit 10018bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/JNetPSCore/JNetPSHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ public static void CreateGlobalInstance(System.Management.Automation.Cmdlet cmdl
/// </summary>
public static void Launch(Type type, params string[] args)
{
_ = typeof(TClass).RunStaticMethodOn(typeof(JNetCore<TClass>), nameof(JNetCore<TClass>.Launch), type, args);
_ = typeof(TClass).RunStaticMethodOn(typeof(JNetCoreBase<TClass>), nameof(JNetCore<TClass>.Launch), type, args);
}
/// <summary>
/// Creates a new class instance
Expand Down

0 comments on commit 10018bb

Please sign in to comment.