Skip to content
This repository was archived by the owner on Jan 2, 2023. It is now read-only.

Commit 5006e82

Browse files
authored
Merge pull request #13 from Enaium/develop
Develop
2 parents f8d7acf + ed38096 commit 5006e82

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# JavaOctetEditor
22

3-
![](https://s1.ax1x.com/2022/08/11/v8T7M8.png)
4-
![](https://s1.ax1x.com/2022/08/11/v8Toxf.png)
3+
![](https://user-images.githubusercontent.com/32991121/186328031-4bf5cddd-3926-4a8b-b675-10da8839b016.png)
4+
![](https://user-images.githubusercontent.com/32991121/186328036-7ab4de70-592b-4b9a-a48b-48c847f178c0.png)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group 'cn.enaium'
10-
version '1.0.0'
10+
version '1.0.1'
1111

1212
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
1313

src/main/java/cn/enaium/joe/dialog/search/SearchLdcDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public SearchLdcDialog() {
4444
JavaOctetEditor.getInstance().task
4545
.submit(new SearchLdcTask(JavaOctetEditor.getInstance().getJar(), text.getText()))
4646
.thenAccept(it -> {
47-
resultList.removeAll();
47+
((DefaultListModel<ResultNode>) resultList.getModel()).clear();
4848
for (ResultNode resultNode : it) {
4949
((DefaultListModel<ResultNode>) resultList.getModel()).addElement(resultNode);
5050
}

0 commit comments

Comments
 (0)