Replace all javax.annotation.Resource imports with jakarta.annotation.Resource imports.

This commit is contained in:
John Blum
2021-11-16 21:50:34 -08:00
parent 8a73238cac
commit b4fd68c9bf
4 changed files with 4 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ import static org.mockito.Mockito.verify;
import java.io.IOException;
import java.time.Duration;
import javax.annotation.Resource;
import jakarta.annotation.Resource;
import org.junit.After;
import org.junit.Before;

View File

@@ -21,7 +21,7 @@ import java.lang.reflect.Method;
import java.time.Duration;
import java.util.Optional;
import javax.annotation.Resource;
import jakarta.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;

View File

@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.session.data.gemfire.expiration;
import static org.assertj.core.api.Assertions.assertThat;
@@ -22,7 +21,7 @@ import java.lang.reflect.Method;
import java.time.Duration;
import java.util.Optional;
import javax.annotation.Resource;
import jakarta.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;

View File

@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.session.data.gemfire.expiration;
import static org.assertj.core.api.Assertions.assertThat;
@@ -23,7 +22,7 @@ import java.time.Duration;
import java.time.Instant;
import java.util.Optional;
import javax.annotation.Resource;
import jakarta.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;