Author: bodewig
Date: Mon Feb 22 05:27:22 2010
New Revision: 912484
URL: http://svn.apache.org/viewvc?rev=912484&view=rev
Log:
untabify
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/Diagnostics.java
Modified: ant/core/trunk/src/main/org/apache/tools/ant/Diagnostics.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/Diagnostics.java?rev=912484&r1=912483&r2=912484&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/Diagnostics.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/Diagnostics.java Mon Feb 22
05:27:22 2010
@@ -180,9 +180,9 @@
* @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();
}