-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "add : sort troop setting view GroupAppInfoListView(GroupFileV…
…iew) to top" This reverts commit 953419e Signed-off-by: suzhelan <[email protected]>
- Loading branch information
suzhelan
committed
Dec 2, 2023
1 parent
a9cbdc2
commit 41599b8
Showing
10 changed files
with
34 additions
and
360 deletions.
There are no files selected for viewing
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
117 changes: 0 additions & 117 deletions
117
app/src/main/java/top/linl/hook/SortTroopSettingAppListView.java
This file was deleted.
Oops, something went wrong.
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
24 changes: 1 addition & 23 deletions
24
...top/linl/util/reflect/CheckClassType.java → ...in/java/top/linl/util/CheckClassType.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
24 changes: 1 addition & 23 deletions
24
...ava/top/linl/util/reflect/FieIdUtils.java → ...c/main/java/top/linl/util/FieIdUtils.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
24 changes: 1 addition & 23 deletions
24
...ava/top/linl/util/reflect/MethodTool.java → ...c/main/java/top/linl/util/MethodTool.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
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,27 @@ | ||
package top.linl.util; | ||
|
||
public class ReflectException extends RuntimeException { | ||
|
||
private Exception otherExceptions; | ||
|
||
public ReflectException() { | ||
super(); | ||
} | ||
|
||
public ReflectException(String content) { | ||
super(content); | ||
} | ||
|
||
public ReflectException(String content, Exception e) { | ||
super(content); | ||
this.otherExceptions = e; | ||
} | ||
|
||
public boolean hasOtherExceptions() { | ||
return otherExceptions != null; | ||
} | ||
|
||
public Exception getOtherExceptions() { | ||
return this.otherExceptions; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.