Skip to content

Commit

Permalink
Update Main.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Pan-cakse committed Sep 19, 2023
1 parent 442e6e6 commit 551c2a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java6/src/main/java/top/leavesmc/leavesclip/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* MIT License
*/

package top.leavesmc.leavesclip;
package org.netherite.netheriteclip;

import java.lang.reflect.Method;

Expand All @@ -21,7 +21,7 @@ public static void main(final String[] args) {
}

try {
final Class<?> paperclipClass = Class.forName("top.leavesmc.leavesclip.Leavesclip");
final Class<?> paperclipClass = Class.forName("org.netherite.netheriteclip.Netheriteclip");
final Method mainMethod = paperclipClass.getMethod("main", String[].class);
mainMethod.invoke(null, (Object) args);
} catch (final Exception e) {
Expand Down

0 comments on commit 551c2a6

Please sign in to comment.