Skip to content

Commit

Permalink
[#noissue] Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Sep 20, 2023
1 parent fa735bb commit e5ec4a2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ public Class<DispatchHandler> getObjectType() {
return DispatchHandler.class;
}

@Override
public boolean isSingleton() {
return true;
}

@PostConstruct
public void afterPropertiesSet() {
Objects.requireNonNull(acceptedTimeService, "acceptedTimeService");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package com.navercorp.pinpoint.collector.receiver.grpc.service;

import com.navercorp.pinpoint.collector.receiver.DispatchHandler;

import io.grpc.ServerInterceptor;
import io.grpc.ServerInterceptors;
import io.grpc.ServerServiceDefinition;
Expand Down Expand Up @@ -80,8 +79,4 @@ public Class<ServerServiceDefinition> getObjectType() {
return ServerServiceDefinition.class;
}

@Override
public boolean isSingleton() {
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,4 @@ public Class<?> getObjectType() {
return SimpleBatchWriter.class;
}

@Override
public boolean isSingleton() {
return true;
}
}

0 comments on commit e5ec4a2

Please sign in to comment.