Skip to content

Commit 52bba4c

Browse files
Bump org.jenkins-ci.plugins:plugin from 5.8 to 5.9 (jenkinsci#396)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6da0d46 commit 52bba4c

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>5.8</version>
8+
<version>5.9</version>
99
<relativePath />
1010
</parent>
1111

src/main/java/com/michelin/cio/hudson/plugins/rolestrategy/RoleMap.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,6 @@ public AclImpl(RoleType roleType, AccessControlled item) {
793793
* @param permission The permission to check
794794
* @return True if the sid has the given permission
795795
*/
796-
@SuppressFBWarnings(value = "NP_BOOLEAN_RETURN_NULL", justification = "As declared in Jenkins API")
797796
@Override
798797
@CheckForNull
799798
protected Boolean hasPermission(Sid sid, Permission permission) {

src/main/java/com/synopsys/arc/jenkins/plugins/rolestrategy/IMacroExtension.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626

2727
import com.michelin.cio.hudson.plugins.rolestrategy.AuthorizationType;
2828
import com.michelin.cio.hudson.plugins.rolestrategy.PermissionEntry;
29-
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
3029
import hudson.security.AccessControlled;
3130
import hudson.security.Permission;
3231

@@ -54,7 +53,6 @@ public interface IMacroExtension {
5453
* @return {@code true} if the macro is applicable to the specified role type
5554
*/
5655
// TODO: fix naming conventions
57-
@SuppressFBWarnings(value = "NM_METHOD_NAMING_CONVENTION", justification = "Old code, should be fixed later")
5856
@SuppressWarnings("checkstyle:MethodName")
5957
boolean IsApplicable(RoleType roleType);
6058

src/main/java/com/synopsys/arc/jenkins/plugins/rolestrategy/macros/ContainedInViewMacro.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ public boolean IsApplicable(RoleType roleType) {
8787
}
8888

8989
@Override
90-
@SuppressFBWarnings(value = "NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE", justification = "we know that the cache has no null entries")
9190
public boolean hasPermission(PermissionEntry sid, Permission p, RoleType type, AccessControlled accessControlledItem, Macro macro) {
9291
if (accessControlledItem instanceof Item) {
9392
Item item = (Item) accessControlledItem;

0 commit comments

Comments
 (0)