From d2826a21c20f5512031e0acb9ca36a87556e73a4 Mon Sep 17 00:00:00 2001 From: SirWayne Date: Fri, 20 May 2016 08:52:29 +0200 Subject: [PATCH] Some clean code refactorings Signed-off-by: SirWayne --- .../org/eclipse/hawkbit/security/SystemSecurityContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SystemSecurityContext.java b/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SystemSecurityContext.java index abe921473..e0f3ca8c7 100644 --- a/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SystemSecurityContext.java +++ b/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SystemSecurityContext.java @@ -72,7 +72,7 @@ public class SystemSecurityContext { try { setSystemContext(); return callable.call(); - // The callable API throws a Exception ant to specific + // The callable API throws a Exception and not a specific } catch (@SuppressWarnings("squid:S2221") final Exception e) { throw Throwables.propagate(e); }