Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #42 from stephenc/jenkins-45331
[FIXED JENKINS-45331] Abstract classes should be abstract
  • Loading branch information
stephenc committed Jul 6, 2017
2 parents 9cefea3 + 079c1b2 commit 499c5a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/jenkins/scm/api/trait/SCMNavigatorTrait.java
Expand Up @@ -39,7 +39,7 @@
*
* @since 2.2.0
*/
public class SCMNavigatorTrait extends SCMTrait<SCMNavigatorTrait> {
public abstract class SCMNavigatorTrait extends SCMTrait<SCMNavigatorTrait> {

/**
* Applies this trait to the {@link SCMNavigatorContext}.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jenkins/scm/api/trait/SCMSourceTrait.java
Expand Up @@ -39,7 +39,7 @@
*
* @since 2.2.0
*/
public class SCMSourceTrait extends SCMTrait<SCMSourceTrait> {
public abstract class SCMSourceTrait extends SCMTrait<SCMSourceTrait> {

/**
* Applies this trait to the {@link SCMSourceContext}.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jenkins/scm/api/trait/SCMTrait.java
Expand Up @@ -39,7 +39,7 @@
*
* @param <T> the type of {@link SCMTrait} specialization.
*/
public class SCMTrait<T extends SCMTrait<T>> extends AbstractDescribableImpl<T> {
public abstract class SCMTrait<T extends SCMTrait<T>> extends AbstractDescribableImpl<T> {
/**
* {@inheritDoc}
*/
Expand Down

0 comments on commit 499c5a4

Please sign in to comment.