Skip to content

Commit 9d4c25b

Browse files
committed
AbstractGitHubNotificationStrategy is not an ExtensionPoint
1 parent 1682ade commit 9d4c25b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/implementation.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
== Extension Points
44

55
=== AbstractGitHubNotificationStrategy
6-
This extension points allows traits to modify the contents of a Github status notification for a build.
6+
This API allows traits to modify the contents of a GitHub status notification for a build.
77
There are currently 3 points in a build lifecycle where notifications are sent:
88

99
* On entering the queue

src/main/java/org/jenkinsci/plugins/github_branch_source/AbstractGitHubNotificationStrategy.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
package org.jenkinsci.plugins.github_branch_source;
2626

27-
import hudson.ExtensionPoint;
2827
import hudson.model.TaskListener;
2928

3029
import java.util.List;
@@ -33,7 +32,7 @@
3332
* Represents a strategy for constructing GitHub status notifications
3433
* @since 2.3.2
3534
*/
36-
public abstract class AbstractGitHubNotificationStrategy implements ExtensionPoint {
35+
public abstract class AbstractGitHubNotificationStrategy {
3736

3837
/**
3938
* Creates the list of {@link GitHubNotificationRequest} for the given context.

0 commit comments

Comments
 (0)