fixed format issues
This commit is contained in:
parent
a700818a06
commit
08f713d98b
55 changed files with 5680 additions and 5533 deletions
|
|
@ -80,7 +80,6 @@ export class HandlerRegistry {
|
|||
return this.handlers.has(handlerName);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set service ownership for a handler
|
||||
*/
|
||||
|
|
@ -107,7 +106,10 @@ export class HandlerRegistry {
|
|||
getServiceHandlers(serviceName: string): HandlerMetadata[] {
|
||||
const handlers: HandlerMetadata[] = [];
|
||||
for (const [handlerName, metadata] of this.handlers) {
|
||||
if (this.handlerServices.get(handlerName) === serviceName || metadata.service === serviceName) {
|
||||
if (
|
||||
this.handlerServices.get(handlerName) === serviceName ||
|
||||
metadata.service === serviceName
|
||||
) {
|
||||
handlers.push(metadata);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue