Skip to content

Commit

Permalink
Move package.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Dec 16, 2021
1 parent 7b14b86 commit 459107f
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Expand Up @@ -16,7 +16,7 @@
package net.bytebuddy.agent;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import net.bytebuddy.agent.nullability.MaybeNull;
import net.bytebuddy.agent.utility.nullability.MaybeNull;

import java.lang.reflect.InvocationTargetException;

Expand Down
Expand Up @@ -16,8 +16,8 @@
package net.bytebuddy.agent;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import net.bytebuddy.agent.nullability.AlwaysNull;
import net.bytebuddy.agent.nullability.MaybeNull;
import net.bytebuddy.agent.utility.nullability.AlwaysNull;
import net.bytebuddy.agent.utility.nullability.MaybeNull;

import java.io.*;
import java.lang.instrument.Instrumentation;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/
package net.bytebuddy.agent;

import net.bytebuddy.agent.nullability.MaybeNull;
import net.bytebuddy.agent.utility.nullability.MaybeNull;

import java.lang.instrument.Instrumentation;
import java.lang.reflect.InvocationTargetException;
Expand Down
Expand Up @@ -21,8 +21,8 @@
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import net.bytebuddy.agent.nullability.MaybeNull;
import net.bytebuddy.agent.nullability.UnknownNull;
import net.bytebuddy.agent.utility.nullability.MaybeNull;
import net.bytebuddy.agent.utility.nullability.UnknownNull;

import java.io.*;
import java.net.ServerSocket;
Expand Down
Expand Up @@ -19,4 +19,4 @@
@NeverNull
package net.bytebuddy.agent;

import net.bytebuddy.agent.nullability.NeverNull;
import net.bytebuddy.agent.utility.nullability.NeverNull;
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.bytebuddy.agent.nullability;
package net.bytebuddy.agent.utility.nullability;

import java.lang.annotation.*;

Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.bytebuddy.agent.nullability;
package net.bytebuddy.agent.utility.nullability;

import java.lang.annotation.*;

Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.bytebuddy.agent.nullability;
package net.bytebuddy.agent.utility.nullability;

import java.lang.annotation.*;

Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.bytebuddy.agent.nullability;
package net.bytebuddy.agent.utility.nullability;

import javax.annotation.meta.When;
import java.lang.annotation.*;
Expand Down
Expand Up @@ -16,4 +16,4 @@
/**
* A package to contain nullability annotations to be used within the Byte Buddy agent project.
*/
package net.bytebuddy.agent.nullability;
package net.bytebuddy.agent.utility.nullability;

0 comments on commit 459107f

Please sign in to comment.