Reposition NativeInvocation, VisibleForTesting annotations under annotation package

This commit is contained in:
김선우
2025-01-11 10:16:19 +09:00
parent aa6f2b3827
commit 82ca627d75
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
package org.github.tursodatabase;
package org.github.tursodatabase.annotations;
import java.lang.annotation.ElementType;

View File

@@ -1,4 +1,4 @@
package org.github.tursodatabase;
package org.github.tursodatabase.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;

View File

@@ -2,8 +2,8 @@ package org.github.tursodatabase.core;
import org.github.tursodatabase.LimboErrorCode;
import org.github.tursodatabase.NativeInvocation;
import org.github.tursodatabase.VisibleForTesting;
import org.github.tursodatabase.annotations.NativeInvocation;
import org.github.tursodatabase.annotations.VisibleForTesting;
import org.github.tursodatabase.annotations.Nullable;
import org.github.tursodatabase.exceptions.LimboException;