Skip to content

Commit

Permalink
Add some comments and delete some commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed Jan 3, 2025
1 parent 34a783a commit 54cfc1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public class PartnerMetadataOrchestrator {

@Inject PartnerMetadataStorage partnerMetadataStorage;
@Inject MessageLinkStorage messageLinkStorage;
// @Inject RSEndpointClient rsclient;
@Inject Formatter formatter;
@Inject Logger logger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
public class ReportStreamSenderHelper {
private static final ReportStreamSenderHelper INSTANCE = new ReportStreamSenderHelper();

// @Inject RSEndpointClient rsclient;
@Inject Formatter formatter;
@Inject Logger logger;
@Inject MetricMetadata metadata;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ public static void registerForThread(Class<?> clazz, Object implementation) {

THREAD_OBJECT_MAP.set(threadObjectMap);

// The implementation may never have had anything injected into it
// (e.g. it wasn't part of the bootstrapping implementations registered into the
// ApplicationContext),
// so inject into the implementation now.
injectIntoNonSingleton(implementation);
}

Expand Down

0 comments on commit 54cfc1b

Please sign in to comment.