Skip to content

Commit 93d7dfe

Browse files
renovate[bot]renovate-botJaidenAshmore
authored
Update dependency prettier-plugin-java to v0.8.3 (#350)
* Update dependency prettier-plugin-java to v0.8.3 * none: fixed prettier changes Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Jaiden Ashmore <jaidenkyleashmore@gmail.com>
1 parent d4a6064 commit 93d7dfe

File tree

187 files changed

+217
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+217
-69
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ public class MyMessageListener {
338338
}
339339

340340
public static class MyPojo {
341+
341342
private String name;
342343

343344
public MyPojo() {

api/src/main/java/com/jashmore/sqs/QueueProperties.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
@NonFinal
1212
@Builder
1313
public class QueueProperties {
14+
1415
/**
1516
* The URL of the queue that can be used by the Amazon clients to add, remove messages etc.
1617
*/

api/src/main/java/com/jashmore/sqs/argument/DefaultMethodParameter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*/
1111
@Builder
1212
public class DefaultMethodParameter implements MethodParameter {
13+
1314
private final Method method;
1415
private final Parameter parameter;
1516
private final int parameterIndex;

api/src/main/java/com/jashmore/sqs/aws/AwsConstants.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
@UtilityClass
66
public final class AwsConstants {
7+
78
/**
89
* AWS has a maximum wait time of for receiving a message and some implementations like ElasticMQ will
910
* throw errors for any value greater than this.

api/src/main/java/com/jashmore/sqs/decorator/MessageProcessingContext.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
@Value
1111
@Builder
1212
public class MessageProcessingContext {
13+
1314
/**
1415
* The unique identifier for this message listener.
1516
*

core/src/integrationTest/java/com/jashmore/sqs/argument/MessageArgumentResolutionIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import software.amazon.awssdk.services.sqs.model.SendMessageRequest;
3232

3333
class MessageArgumentResolutionIntegrationTest {
34+
3435
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
3536
private static final PayloadMapper PAYLOAD_MAPPER = new JacksonPayloadMapper(OBJECT_MAPPER);
3637
private static final ArgumentResolverService ARGUMENT_RESOLVER_SERVICE = new CoreArgumentResolverService(PAYLOAD_MAPPER, OBJECT_MAPPER);
@@ -100,6 +101,7 @@ void messageAttributesCanBeConsumedInMessageProcessingMethods() throws Exception
100101
@SuppressWarnings("WeakerAccess")
101102
@AllArgsConstructor
102103
public static class MessageConsumer {
104+
103105
private final CountDownLatch latch;
104106
private final AtomicReference<Message> valueAtomicReference;
105107

core/src/integrationTest/java/com/jashmore/sqs/argument/MessageAttributeIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
@Slf4j
3838
class MessageAttributeIntegrationTest {
39+
3940
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
4041
private static final PayloadMapper PAYLOAD_MAPPER = new JacksonPayloadMapper(OBJECT_MAPPER);
4142
private static final ArgumentResolverService ARGUMENT_RESOLVER_SERVICE = new CoreArgumentResolverService(PAYLOAD_MAPPER, OBJECT_MAPPER);
@@ -121,6 +122,7 @@ void messageAttributesCanBeConsumedInMessageProcessingMethods() throws Exception
121122
@SuppressWarnings("WeakerAccess")
122123
@AllArgsConstructor
123124
public static class MessageConsumer {
125+
124126
private final CountDownLatch latch;
125127
private final AtomicReference<String> valueAtomicReference;
126128

core/src/integrationTest/java/com/jashmore/sqs/argument/MessageSystemAttributeIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939

4040
@Slf4j
4141
class MessageSystemAttributeIntegrationTest {
42+
4243
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
4344
private static final PayloadMapper PAYLOAD_MAPPER = new JacksonPayloadMapper(OBJECT_MAPPER);
4445
private static final ArgumentResolverService ARGUMENT_RESOLVER_SERVICE = new CoreArgumentResolverService(PAYLOAD_MAPPER, OBJECT_MAPPER);
@@ -108,6 +109,7 @@ void messageAttributesCanBeConsumedInMessageProcessingMethods() throws Exception
108109
@SuppressWarnings("WeakerAccess")
109110
@AllArgsConstructor
110111
public static class MessageConsumer {
112+
111113
private final CountDownLatch latch;
112114
private final AtomicReference<OffsetDateTime> valueAtomicReference;
113115

core/src/integrationTest/java/com/jashmore/sqs/argument/VisibilityExtenderIntegrationTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737

3838
@Slf4j
3939
class VisibilityExtenderIntegrationTest {
40+
4041
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
4142
private static final PayloadMapper PAYLOAD_MAPPER = new JacksonPayloadMapper(OBJECT_MAPPER);
4243
private static final ArgumentResolverService ARGUMENT_RESOLVER_SERVICE = new CoreArgumentResolverService(PAYLOAD_MAPPER, OBJECT_MAPPER);
@@ -115,6 +116,7 @@ void messageAttributesCanBeConsumedInMessageProcessingMethods() throws Exception
115116

116117
@AllArgsConstructor
117118
public static class MessageConsumer {
119+
118120
private final CountDownLatch latch;
119121
private final AtomicInteger numberTimesEntered;
120122

core/src/integrationTest/java/com/jashmore/sqs/container/batching/BatchingMessageListenerContainerIntegrationTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import org.junit.jupiter.api.Test;
1414

1515
public class BatchingMessageListenerContainerIntegrationTest {
16+
1617
ElasticMqSqsAsyncClient sqsAsyncClient = new ElasticMqSqsAsyncClient();
1718

1819
@Test

0 commit comments

Comments
 (0)