Skip to content

Commit

Permalink
Surpress false warnings so build doesnt fail
Browse files Browse the repository at this point in the history
  • Loading branch information
cb645j committed Dec 13, 2024
1 parent bdd9ea1 commit 628d839
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public void transform(TypeTransformer transformer) {
this.getClass().getName() + "$CamundaCallableElementActivityBehaviorAdvice");
}

@SuppressWarnings("unused")
public static class CamundaCallableElementActivityBehaviorAdvice {

@Advice.OnMethodEnter(suppress = Throwable.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public void transform(TypeTransformer transformer) {
this.getClass().getName() + "$CamundaEndEventActivityBehaviorAdvice");
}

@SuppressWarnings("unused")
public static class CamundaEndEventActivityBehaviorAdvice {

@Advice.OnMethodEnter(suppress = Throwable.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public void transform(TypeTransformer transformer) {
this.getClass().getName() + "$CamundaTaskActivityBehaviorAdvice");
}

@SuppressWarnings("unused")
public static class CamundaTaskActivityBehaviorAdvice {

@Advice.OnMethodEnter(suppress = Throwable.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public void transform(TypeTransformer transformer) {
this.getClass().getName() + "$CamundaAsyncContinuationJobHandlerAdvice");
}

@SuppressWarnings("unused")
public static class CamundaAsyncContinuationJobHandlerAdvice {
@Advice.OnMethodEnter(suppress = Throwable.class)
public static void addTracingEnter(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public void transform(TypeTransformer transformer) {
+ "$CamundaProcessInstantiationBuilderExecuteWithVariablesAdvice");
}

@SuppressWarnings("unused")
public static class CamundaProcessInstantiationBuilderExecuteWithVariablesAdvice {

@Advice.OnMethodEnter(suppress = Throwable.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public void transform(TypeTransformer transformer) {

public static class CamundaTopicSubscriptionMangerAdvice {

@SuppressWarnings("unused")
@SuppressWarnings("rawtypes")
@Advice.OnMethodEnter(suppress = Throwable.class)
public static void addTracingEnter(
Expand Down

0 comments on commit 628d839

Please sign in to comment.