Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
XiongKezhi committed Dec 20, 2020
1 parent a8fa866 commit 6018f89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
public abstract class AbstractStatusChecksProperties implements ExtensionPoint {
/**
* Returns if the implementation is applicable for the {@code job}.
* Returns true if the implementation is applicable for the {@code job}.
*
* @param job
* A jenkins job.
Expand All @@ -28,11 +28,11 @@ public abstract class AbstractStatusChecksProperties implements ExtensionPoint {
public abstract String getName(Job<?, ?> job);

/**
* Returns if skip publishing status checks.
* Returns true if skip publishing status checks.
*
* @param job
* A jenkins job.
* @return true if skip
* @return true if skipped
*/
public abstract boolean isSkipped(Job<?, ?> job);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import hudson.ExtensionPoint;
import hudson.model.Job;

import java.sql.Statement;

/**
* Properties that controls status checks.
*
Expand Down

0 comments on commit 6018f89

Please sign in to comment.