Skip to content

Commit be67249

Browse files
authored
Merge pull request #161 from KostyaSha/sinc
Set @SInCE
2 parents bd2e945 + f9610c7 commit be67249

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/main/java/com/cloudbees/jenkins/GitHubRepositoryNameContributor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void parseAssociatedNames(AbstractProject<?, ?> job, Collection<GitHubRep
5959
* then puts them into the collection.
6060
* @param item the item.
6161
* @param result the collection to add repository names to
62-
* @since FIXME
62+
* @since 1.25.0
6363
*/
6464
@SuppressWarnings("deprecation")
6565
public /*abstract*/ void parseAssociatedNames(Item item, Collection<GitHubRepositoryName> result) {

src/main/java/com/cloudbees/jenkins/GitHubSetCommitStatusBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public ExpandableMessage getStatusMessage() {
5151

5252
/**
5353
* @return Context provider
54-
* @since FIXME
54+
* @since 1.24.0
5555
*/
5656
public GitHubStatusContextSource getContextSource() {
5757
return contextSource;
@@ -66,7 +66,7 @@ public void setStatusMessage(ExpandableMessage statusMessage) {
6666
}
6767

6868
/**
69-
* @since FIXME
69+
* @since 1.24.0
7070
*/
7171
@DataBoundSetter
7272
public void setContextSource(GitHubStatusContextSource contextSource) {

src/main/java/com/cloudbees/jenkins/GitHubWebHook.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void registerHookFor(Job job) {
8484
* {@code GitHubWebHook.get().registerHookFor(item);}
8585
*
8686
* @param item not null item to register hook for
87-
* @since FIXME
87+
* @since 1.25.0
8888
*/
8989
public void registerHookFor(Item item) {
9090
reRegisterHookForJob().apply(item);

src/main/java/org/jenkinsci/plugins/github/extension/GHEventsSubscriber.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected boolean isApplicable(@Nullable Job<?, ?> project) {
6464
* @param item to check
6565
*
6666
* @return {@code true} to provide events to register and subscribe for this item
67-
* @since FIXME
67+
* @since 1.25.0
6868
*/
6969
protected abstract boolean isApplicable(@Nullable Item item);
7070

@@ -166,7 +166,7 @@ public static Predicate<GHEventsSubscriber> isApplicableFor(final Job<?, ?> proj
166166
*
167167
* @return predicate to use in iterable filtering
168168
* @see #isApplicable
169-
* @since FIXME
169+
* @since 1.25.0
170170
*/
171171
public static Predicate<GHEventsSubscriber> isApplicableFor(final Item item) {
172172
return new NullSafePredicate<GHEventsSubscriber>() {

src/main/java/org/jenkinsci/plugins/github/util/FluentIterableWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public final FluentIterableWrapper<E> filter(Predicate<? super E> predicate) {
8282
/**
8383
* Returns the elements from this fluent iterable that are instances of the supplied type. The
8484
* resulting fluent iterable's iterator does not support {@code remove()}.
85-
* @since FIXME
85+
* @since 1.25.0
8686
*/
8787
@CheckReturnValue
8888
public final <F extends E> FluentIterableWrapper<F> filter(Class<F> clazz) {

src/main/java/org/jenkinsci/plugins/github/util/JobInfoHelpers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public static <T extends Trigger> T triggerFrom(Job<?, ?> job, Class<T> tClass)
103103
* @param <T> type of trigger
104104
*
105105
* @return Trigger instance with required class or null
106-
* @since FIXME
106+
* @since 1.25.0
107107
* TODO use standard method in 1.621+
108108
*/
109109
@CheckForNull

src/main/java/org/jenkinsci/plugins/github/webhook/WebhookManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public Runnable registerFor(final Job<?, ?> project) {
101101
*
102102
* @return runnable to create hooks on run
103103
* @see #createHookSubscribedTo(List)
104-
* @since FIXME
104+
* @since 1.25.0
105105
*/
106106
public Runnable registerFor(final Item item) {
107107
final Collection<GitHubRepositoryName> names = parseAssociatedNames(item);

0 commit comments

Comments
 (0)