From d7cd65aa7f0e8bebb9cee2bfebc94a5b15fee107 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Mon, 22 Feb 2010 05:27:22 +0000 Subject: [PATCH] untabify git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@912484 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Diagnostics.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/org/apache/tools/ant/Diagnostics.java b/src/main/org/apache/tools/ant/Diagnostics.java index 72cd8aed3..c6ba38eaa 100644 --- a/src/main/org/apache/tools/ant/Diagnostics.java +++ b/src/main/org/apache/tools/ant/Diagnostics.java @@ -180,9 +180,9 @@ public final class Diagnostics { * @since Ant 1.8.0 */ private static URL getClassLocation(Class clazz) { - if (clazz.getProtectionDomain().getCodeSource() == null) { - return null; - } + if (clazz.getProtectionDomain().getCodeSource() == null) { + return null; + } return clazz.getProtectionDomain().getCodeSource().getLocation(); }