Skip to content

Commit 8c9e36d

Browse files
authored
Merge pull request #42 from kingthorin/init-fix
Adjust tag list init
2 parents 88d9aad + 73a964a commit 8c9e36d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this add-on will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
7-
7+
### Changed
8+
- Adjust initialization of the Tags list
89

910
## [1.7.0] - 2025-02-12
1011
### Changed

src/main/java/org/zaproxy/zap/extension/neonmarker/NeonmarkerPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ private class TagListModel implements ComboBoxModel<String> {
402402

403403
TagListModel() {
404404
listDataListeners = new ArrayList<>();
405-
updateTags();
405+
allTags = List.of();
406406
}
407407

408408
private void updateTags() {

0 commit comments

Comments
 (0)