You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by gh...@apache.org on 2020/10/08 21:10:43 UTC

[felix-dev] branch master updated: Formatting (removed tabs for consistency)

This is an automated email from the ASF dual-hosted git repository.

ghenzler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git


The following commit(s) were added to refs/heads/master by this push:
     new ca021fd  Formatting (removed tabs for consistency)
ca021fd is described below

commit ca021fd59fc4e6996495f63f7fa47cc39fe25538
Author: georg.henzler <ge...@netcentric.biz>
AuthorDate: Thu Oct 8 23:08:57 2020 +0200

    Formatting (removed tabs for consistency)
---
 .../org/apache/felix/hc/core/impl/executor/HealthCheckFuture.java  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/healthcheck/core/src/main/java/org/apache/felix/hc/core/impl/executor/HealthCheckFuture.java b/healthcheck/core/src/main/java/org/apache/felix/hc/core/impl/executor/HealthCheckFuture.java
index 6ae5574..93e3cbe 100644
--- a/healthcheck/core/src/main/java/org/apache/felix/hc/core/impl/executor/HealthCheckFuture.java
+++ b/healthcheck/core/src/main/java/org/apache/felix/hc/core/impl/executor/HealthCheckFuture.java
@@ -47,11 +47,10 @@ public class HealthCheckFuture extends FutureTask<ExecutionResult> {
     private final static Logger LOG = LoggerFactory.getLogger(HealthCheckFuture.class);
 
     private static Result createResult(final HealthCheckMetadata metadata, Exception e) {
-		return new Result(Result.Status.HEALTH_CHECK_ERROR,
-		        "Exception during execution of '" + metadata.getName() + "'", e);
-	}
+        return new Result(Result.Status.HEALTH_CHECK_ERROR, "Exception during execution of '" + metadata.getName() + "'", e);
+    }
 
-	private final HealthCheckMetadata metadata;
+    private final HealthCheckMetadata metadata;
     private final Date createdTime;
 
     public HealthCheckFuture(final HealthCheckMetadata metadata, final BundleContext bundleContext, final Callback callback) {