Skip to content

Commit 2bb43bb

Browse files
committed
Fix ClassCastException #22
1 parent f95b325 commit 2bb43bb

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/com/junichi11/netbeans/modules/github/issues/query/ui/GitHubQueryPanel.form

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@
149149
<Component id="stateLabel" alignment="3" min="-2" max="-2" attributes="0"/>
150150
<Component id="stateComboBox" alignment="3" min="-2" max="-2" attributes="0"/>
151151
</Group>
152-
<EmptySpace min="-2" max="-2" attributes="0"/>
153152
<Group type="103" groupAlignment="0" attributes="0">
154153
<Group type="103" alignment="0" groupAlignment="3" attributes="0">
155154
<Component id="createdLabel" alignment="3" min="-2" max="-2" attributes="0"/>

src/main/java/com/junichi11/netbeans/modules/github/issues/query/ui/GitHubQueryPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public String getIn() {
304304
}
305305

306306
public Type getType() {
307-
return (Type) noComboBox.getSelectedItem();
307+
return (Type) typeComboBox.getSelectedItem();
308308
}
309309

310310
public No getNo() {

0 commit comments

Comments
 (0)