Skip to content

Commit

Permalink
Merge pull request quarkus-qe#1913 from gtroitsk/redix-cache-package-…
Browse files Browse the repository at this point in the history
…renaming

Rename package names in redis cache module
  • Loading branch information
jedla97 authored Aug 1, 2024
2 parents 8a998cb + bde46a8 commit 20439fe
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.cache.caffeine;
package io.quarkus.ts.cache.redis;

import jakarta.enterprise.context.ApplicationScoped;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.cache.caffeine;
package io.quarkus.ts.cache.redis;

import io.quarkus.cache.CacheInvalidate;
import io.quarkus.cache.CacheInvalidateAll;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.cache.caffeine;
package io.quarkus.ts.cache.redis;

import jakarta.enterprise.context.RequestScoped;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.cache.caffeine;
package io.quarkus.ts.cache.redis;

import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.ts.cache.caffeine;
package io.quarkus.ts.cache.redis;

import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.quarkus.ts.cache.redis;

import static io.quarkus.ts.cache.caffeine.ServiceWithCacheResource.APPLICATION_SCOPE_SERVICE_PATH;
import static io.quarkus.ts.cache.caffeine.ServiceWithCacheResource.REQUEST_SCOPE_SERVICE_PATH;
import static io.quarkus.ts.cache.redis.ServiceWithCacheResource.APPLICATION_SCOPE_SERVICE_PATH;
import static io.quarkus.ts.cache.redis.ServiceWithCacheResource.REQUEST_SCOPE_SERVICE_PATH;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
Expand Down

0 comments on commit 20439fe

Please sign in to comment.