Skip to content

Commit

Permalink
some self review
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaiden Ashmore authored and Jaiden Ashmore committed Oct 6, 2024
1 parent 4bd7ea0 commit 592d4f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion annotations/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Java Dynamic SQS Listener Annotations

Wrapper around the core library that allows for setting up using annotations to simplify the usage.
ore message listener.

## More Information

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
import java.util.function.Supplier;

/**
* {@link MessageListenerContainerFactory} that can be used to build against an annotated method
* @param <A>
* {@link MessageListenerContainerFactory} that can be used to build against an annotated method.
*
* @param <A> annotation that is applied on the method
*/
public class AnnotationMessageListenerContainerFactory<A extends Annotation> implements MessageListenerContainerFactory {
private final Class<A> annotationClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import com.jashmore.sqs.placeholder.PlaceholderResolver;
import org.springframework.core.env.Environment;

/**
* Implementation that replaces placeholders via the Spring Environment, e.g. application.properties files.
*/
public class SpringPlaceholderResolver implements PlaceholderResolver {

private final Environment environment;
Expand Down

0 comments on commit 592d4f3

Please sign in to comment.