Skip to content

Commit 8ea5ad4

Browse files
committed
解决用例查询无法使用问题
1 parent bf4b62c commit 8ea5ad4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

jadx-gui/src/main/java/jadx/gui/ui/codearea/CodeArea.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ public ICodeInfo getCodeInfo() {
112112
public void load() {
113113
if (getText().isEmpty()) {
114114
String codeStr = getCodeInfo().getCodeStr();
115-
codeStr = "/*\n" +
116-
" * =====================================================\n" +
117-
" * 警告:本代码仅用于学习和参考!\n" +
118-
" * Warning: This code is for study and reference only!\n" +
119-
" * =====================================================\n" +
120-
" */\n\n" + codeStr;
115+
//codeStr = "/*\n" +
116+
//" * =====================================================\n" +
117+
//" * 警告:本代码仅用于学习和参考!\n" +
118+
//" * Warning: This code is for study and reference only!\n" +
119+
//" * =====================================================\n" +
120+
//" */\n\n" + codeStr;
121121
setText(codeStr);
122122
setCaretPosition(0);
123123
setLoaded();

0 commit comments

Comments
 (0)