Skip to content

Commit 793ecb4

Browse files
committed
Add missing single-quote in calls to MessageFormat
Closes pull request hudson2-plugins#29
1 parent b3ddce6 commit 793ecb4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/hudson/plugins/git/util/DefaultBuildChooser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ private Collection<Revision> getAdvancedCandidateRevisions(boolean isPollCall, T
140140
}
141141

142142
if (!keep) {
143-
verbose(listener, "Ignoring {0} because it doesn't match branch specifier", b);
143+
verbose(listener, "Ignoring {0} because it doesn''t match branch specifier", b);
144144
j.remove();
145145
}
146146
}
147147

148148
if (r.getBranches().size() == 0) {
149-
verbose(listener, "Ignoring {0} because we don't care about any of the branches that point to it", r);
149+
verbose(listener, "Ignoring {0} because we don''t care about any of the branches that point to it", r);
150150
i.remove();
151151
}
152152
}

0 commit comments

Comments
 (0)