Skip to content

Commit

Permalink
Merge pull request #161 from KostyaSha/sinc
Browse files Browse the repository at this point in the history
Set @SInCE
  • Loading branch information
KostyaSha committed Dec 11, 2016
2 parents bd2e945 + f9610c7 commit be67249
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void parseAssociatedNames(AbstractProject<?, ?> job, Collection<GitHubRep
* then puts them into the collection.
* @param item the item.
* @param result the collection to add repository names to
* @since FIXME
* @since 1.25.0
*/
@SuppressWarnings("deprecation")
public /*abstract*/ void parseAssociatedNames(Item item, Collection<GitHubRepositoryName> result) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ExpandableMessage getStatusMessage() {

/**
* @return Context provider
* @since FIXME
* @since 1.24.0
*/
public GitHubStatusContextSource getContextSource() {
return contextSource;
Expand All @@ -66,7 +66,7 @@ public void setStatusMessage(ExpandableMessage statusMessage) {
}

/**
* @since FIXME
* @since 1.24.0
*/
@DataBoundSetter
public void setContextSource(GitHubStatusContextSource contextSource) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cloudbees/jenkins/GitHubWebHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void registerHookFor(Job job) {
* {@code GitHubWebHook.get().registerHookFor(item);}
*
* @param item not null item to register hook for
* @since FIXME
* @since 1.25.0
*/
public void registerHookFor(Item item) {
reRegisterHookForJob().apply(item);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected boolean isApplicable(@Nullable Job<?, ?> project) {
* @param item to check
*
* @return {@code true} to provide events to register and subscribe for this item
* @since FIXME
* @since 1.25.0
*/
protected abstract boolean isApplicable(@Nullable Item item);

Expand Down Expand Up @@ -166,7 +166,7 @@ public static Predicate<GHEventsSubscriber> isApplicableFor(final Job<?, ?> proj
*
* @return predicate to use in iterable filtering
* @see #isApplicable
* @since FIXME
* @since 1.25.0
*/
public static Predicate<GHEventsSubscriber> isApplicableFor(final Item item) {
return new NullSafePredicate<GHEventsSubscriber>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public final FluentIterableWrapper<E> filter(Predicate<? super E> predicate) {
/**
* Returns the elements from this fluent iterable that are instances of the supplied type. The
* resulting fluent iterable's iterator does not support {@code remove()}.
* @since FIXME
* @since 1.25.0
*/
@CheckReturnValue
public final <F extends E> FluentIterableWrapper<F> filter(Class<F> clazz) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static <T extends Trigger> T triggerFrom(Job<?, ?> job, Class<T> tClass)
* @param <T> type of trigger
*
* @return Trigger instance with required class or null
* @since FIXME
* @since 1.25.0
* TODO use standard method in 1.621+
*/
@CheckForNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public Runnable registerFor(final Job<?, ?> project) {
*
* @return runnable to create hooks on run
* @see #createHookSubscribedTo(List)
* @since FIXME
* @since 1.25.0
*/
public Runnable registerFor(final Item item) {
final Collection<GitHubRepositoryName> names = parseAssociatedNames(item);
Expand Down

0 comments on commit be67249

Please sign in to comment.