Skip to content

Commit

Permalink
POM Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
docwho2 committed Nov 21, 2023
1 parent ad165d4 commit 35a6d28
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class ChatGPTLambda implements RequestHandler<LexV2Event, LexV2Response> {

// Initialize the Log4j logger.
Logger log = LogManager.getLogger();
final static Logger log = LogManager.getLogger(ChatGPTLambda.class);

final static ObjectMapper mapper = new ObjectMapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public abstract class AbstractFlow implements RequestHandler<SMARequest, SMAResponse> {

// Initialize the Log4j logger.
protected final static Logger log = LogManager.getLogger();
protected final static Logger log = LogManager.getLogger(AbstractFlow.class);

private final static ObjectMapper mapper = JacksonPojoSerializer.getInstance().getMapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
@NoArgsConstructor
public abstract class Action<A extends Action, R extends ResponseAction> implements Cloneable {

protected final static Logger log = LogManager.getLogger();
protected final static Logger log = LogManager.getLogger(Action.class);

protected final static ObjectMapper mapper = JacksonPojoSerializer.getInstance().getMapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class PollyPromptGenerator extends AbstractCustomResourceHandler {

// Initialize the Log4j logger.
Logger log = LogManager.getLogger();
Logger log = LogManager.getLogger(PollyPromptGenerator.class);

private final static PollyClient polly = PollyClient.builder()
.region(Region.of(System.getenv(SdkSystemSetting.AWS_REGION.environmentVariable())))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
public class PromptCopier extends AbstractCustomResourceHandler {

// Initialize the Log4j logger.
Logger log = LogManager.getLogger();
Logger log = LogManager.getLogger(PromptCopier.class);

private final static S3Client s3 = S3Client.builder()
.region(Region.of(System.getenv(SdkSystemSetting.AWS_REGION.environmentVariable())))
Expand Down

0 comments on commit 35a6d28

Please sign in to comment.