Skip to content

Commit 40e913b

Browse files
committed
Minor changes
1 parent a45fd20 commit 40e913b

2 files changed

Lines changed: 13 additions & 7 deletions

File tree

src/main/java/com/junichi11/netbeans/modules/github/issues/issue/GitHubIssueNode.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ protected Property<?>[] getProperties() {
8383

8484
@NbBundle.Messages({
8585
"GitHubIssueNode.id.displayName=ID",
86-
"GitHubIssueNode.id.shortDescription=ID",})
86+
"GitHubIssueNode.id.shortDescription=ID"
87+
})
8788
private class IDProperty extends IssueNode<GitHubIssue>.IssueProperty<String> {
8889

8990
public IDProperty() {
@@ -98,7 +99,8 @@ public String getValue() throws IllegalAccessException, InvocationTargetExceptio
9899

99100
@NbBundle.Messages({
100101
"GitHubIssueNode.created.displayName=Created",
101-
"GitHubIssueNode.created.shortDescription=Created",})
102+
"GitHubIssueNode.created.shortDescription=Created"
103+
})
102104
private class CreatedProperty extends IssueNode<GitHubIssue>.IssueProperty<String> {
103105

104106
public CreatedProperty() {
@@ -117,7 +119,8 @@ public String getValue() throws IllegalAccessException, InvocationTargetExceptio
117119

118120
@NbBundle.Messages({
119121
"GitHubIssueNode.updated.displayName=Updated",
120-
"GitHubIssueNode.updated.shortDescription=Updated",})
122+
"GitHubIssueNode.updated.shortDescription=Updated"
123+
})
121124
private class UpdatedProperty extends IssueNode<GitHubIssue>.IssueProperty<String> {
122125

123126
public UpdatedProperty() {
@@ -136,7 +139,8 @@ public String getValue() throws IllegalAccessException, InvocationTargetExceptio
136139

137140
@NbBundle.Messages({
138141
"GitHubIssueNode.createdBy.displayName=Registered By",
139-
"GitHubIssueNode.createdBy.shortDescription=Registered By",})
142+
"GitHubIssueNode.createdBy.shortDescription=Registered By"
143+
})
140144
private class CreatedByProperty extends IssueNode<GitHubIssue>.IssueProperty<String> {
141145

142146
public CreatedByProperty() {
@@ -155,7 +159,8 @@ public String getValue() throws IllegalAccessException, InvocationTargetExceptio
155159

156160
@NbBundle.Messages({
157161
"GitHubIssueNode.assignee.displayName=Assignee",
158-
"GitHubIssueNode.assignee.shortDescription=Assignee",})
162+
"GitHubIssueNode.assignee.shortDescription=Assignee"
163+
})
159164
private class AssigneeProperty extends IssueNode<GitHubIssue>.IssueProperty<String> {
160165

161166
public AssigneeProperty() {
@@ -174,7 +179,8 @@ public String getValue() throws IllegalAccessException, InvocationTargetExceptio
174179

175180
@NbBundle.Messages({
176181
"GitHubIssueNode.status.displayName=Status",
177-
"GitHubIssueNode.status.shortDescription=Status",})
182+
"GitHubIssueNode.status.shortDescription=Status"
183+
})
178184
public class StatusProperty extends IssueNode<GitHubIssue>.IssueProperty<String> {
179185

180186
public StatusProperty() {

src/main/java/com/junichi11/netbeans/modules/github/issues/issue/ui/LabelPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public LabelPanel(List<Label> filter) {
8484
nameTextField.getDocument().addDocumentListener(documentListener);
8585
colorTextField.getDocument().addDocumentListener(documentListener);
8686
errorLabel.setForeground(UIManager.getColor("nb.errorForeground")); // NOI18N
87-
setError("");
87+
setError(""); // NOI18N
8888
}
8989

9090
/**

0 commit comments

Comments
 (0)