We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 92c8f37 + 7a30b89 commit 087bf0aCopy full SHA for 087bf0a
2 files changed
pom.xml
@@ -3,7 +3,7 @@
3
<modelVersion>4.0.0</modelVersion>
4
<groupId>com.junichi11</groupId>
5
<artifactId>netbeans-github-issues</artifactId>
6
- <version>0.2.2</version>
+ <version>0.2.3</version>
7
<packaging>nbm</packaging>
8
<build>
9
<plugins>
src/main/java/com/junichi11/netbeans/modules/github/issues/egit/SearchIssuesParams.java
@@ -246,7 +246,7 @@ public SearchIssuesParams milestone(Milestone milestone) {
246
}
247
248
public SearchIssuesParams milestone(String milestone) {
249
- if (milestone != null) {
+ if (!StringUtils.isEmpty(milestone)) {
250
qParameters.add(Pair.of("milestone", milestone)); // NOI18N
251
252
return this;
0 commit comments