Skip to content

Commit

Permalink
Replace javax Nullable with spotbugs Nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed Jan 25, 2025
1 parent 024aa16 commit aab6dff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
import static org.jenkinsci.plugins.cloudstats.ProvisioningActivity.Phase.OPERATING;

import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;

/**
* Indexed view of statistics snapshot.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

import edu.umd.cs.findbugs.annotations.CheckForNull;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import hudson.Util;
import hudson.model.ModelObject;
import java.io.Serializable;
Expand All @@ -33,7 +34,6 @@
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import javax.annotation.Nullable;
import javax.annotation.concurrent.GuardedBy;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.NoExternalUse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
package org.jenkinsci.plugins.cloudstats;

import javax.annotation.Nullable;
import edu.umd.cs.findbugs.annotations.Nullable;

/**
* Interface to be implemented by plugins to have their provisioning activities tracked.
Expand Down

0 comments on commit aab6dff

Please sign in to comment.