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.
1 parent 526821f commit ceeb7ceCopy full SHA for ceeb7ce
1 file changed
src/main/java/com/junichi11/netbeans/modules/github/issues/issue/GitHubIssueFinder.java
@@ -41,6 +41,7 @@
41
*/
42
package com.junichi11.netbeans.modules.github.issues.issue;
43
44
+import org.netbeans.modules.bugtracking.commons.SimpleIssueFinder;
45
import org.netbeans.modules.bugtracking.spi.IssueFinder;
46
47
/**
@@ -49,16 +50,14 @@
49
50
51
public class GitHubIssueFinder implements IssueFinder {
52
- private static final int[] EMPTY_INT_ARRAY = new int[0];
53
-
54
@Override
55
public int[] getIssueSpans(CharSequence cs) {
56
- return EMPTY_INT_ARRAY;
+ return SimpleIssueFinder.getInstance().getIssueSpans(cs);
57
}
58
59
60
public String getIssueId(String string) {
61
- return null;
+ return SimpleIssueFinder.getInstance().getIssueId(string);
62
63
64
0 commit comments