Skip to content

Commit

Permalink
#2878: minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
uweschaefer committed Jun 13, 2024
1 parent 7d2acdb commit f84ea56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,14 +240,14 @@ void happyPath() {
@ProjectionMetaData(revision = 1)
static class TestProjection extends AbstractRedisTxManagedProjection {

public TestProjection(@NonNull RedissonClient redisson) {
TestProjection(@NonNull RedissonClient redisson) {
super(redisson);
}
}

static class MissingAnnotationTestProjection extends AbstractRedisTxManagedProjection {

public MissingAnnotationTestProjection(@NonNull RedissonClient redisson) {
MissingAnnotationTestProjection(@NonNull RedissonClient redisson) {
super(redisson);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ public TestProjection50(@NonNull RedissonClient redisson) {

public static void main(String[] args) throws Exception {
org.openjdk.jmh.Main.main(args);
// new RedisTransactionProjectorBenchmark().applyBatch10();
new RedisTransactionProjectorBenchmark().applyBatchDefaultSize();
}
}

0 comments on commit f84ea56

Please sign in to comment.