Skip to content

Commit

Permalink
Fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Malte-Hansen committed Dec 3, 2024
1 parent c4a30b8 commit 85cd4de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public static LandscapeRecord fromRow(final Row row) {
*/
final String[] operationFqnSplit = methodFqn.split("\\.");

final String packageName = String.join(".", Arrays.copyOf(operationFqnSplit, operationFqnSplit.length - 2));
final String packageName = String.join(".", Arrays.copyOf(operationFqnSplit,
operationFqnSplit.length - 2));
final String className = operationFqnSplit[operationFqnSplit.length - 2];
final String methodName = operationFqnSplit[operationFqnSplit.length - 1];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public PersistenceSpan apply(final Span span) {
final String k8sNamespace = span.getK8sNamespace();
final String k8sDeploymentName = span.getK8sDeploymentName();

final String methodHashCode = HashHelper.calculateSpanHash(landscapeToken, nodeIpAddress, applicationName,
applicationInstance, methodFqn, k8sPodName, k8sNodeName, k8sNamespace,
final String methodHashCode = HashHelper.calculateSpanHash(landscapeToken, nodeIpAddress,
applicationName, applicationInstance, methodFqn, k8sPodName, k8sNodeName, k8sNamespace,
k8sDeploymentName);

return new PersistenceSpan(landscapeToken, gitCommitChecksum, span.getSpanId(),
Expand Down

0 comments on commit 85cd4de

Please sign in to comment.