Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-43507] Documenting SCMNavigatorTrait and SCMNavigatorTraitDe…
…scriptor
  • Loading branch information
stephenc committed Jun 12, 2017
1 parent aaaa28b commit b70866b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -144,7 +144,7 @@ public boolean isApplicableToSCM(@NonNull Class<? extends SCM> scmClass) {
* {@inheritDoc}
*/
@Override
public boolean isApplicableTo(SCMSource source) {
public boolean isApplicableTo(@NonNull SCMSource source) {
return super.isApplicableTo(source)
&& source instanceof AbstractGitSCMSource;
}
Expand Down
Expand Up @@ -188,7 +188,7 @@ public boolean isApplicableToSCM(@NonNull Class<? extends SCM> scmClass) {
* {@inheritDoc}
*/
@Override
public boolean isApplicableTo(SCMSource source) {
public boolean isApplicableTo(@NonNull SCMSource source) {
return super.isApplicableTo(source) && source instanceof AbstractGitSCMSource;
}

Expand Down
Expand Up @@ -139,7 +139,7 @@ public boolean isApplicableToSCM(@NonNull Class<? extends SCM> scmClass) {
* {@inheritDoc}
*/
@Override
public boolean isApplicableTo(SCMSource source) {
public boolean isApplicableTo(@NonNull SCMSource source) {
return super.isApplicableTo(source) && source instanceof AbstractGitSCMSource;
}

Expand Down
Expand Up @@ -109,7 +109,7 @@ public boolean isApplicableToSCM(@NonNull Class<? extends SCM> scmClass) {
* {@inheritDoc}
*/
@Override
public boolean isApplicableTo(SCMSource source) {
public boolean isApplicableTo(@NonNull SCMSource source) {
return super.isApplicableTo(source) && source instanceof GitSCMSource;
}

Expand Down
Expand Up @@ -216,7 +216,7 @@ public boolean isApplicableToSCM(@NonNull Class<? extends SCM> scmClass) {
* {@inheritDoc}
*/
@Override
public boolean isApplicableTo(SCMSource source) {
public boolean isApplicableTo(@NonNull SCMSource source) {
return super.isApplicableTo(source) && source instanceof AbstractGitSCMSource;
}

Expand Down

0 comments on commit b70866b

Please sign in to comment.