Skip to content

Commit 7a009ea

Browse files
committed
Removed TAB characters.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@153622 13f79535-47bb-0310-9956-ffa450edef68
1 parent e3962ee commit 7a009ea

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/java/org/apache/commons/io/FilenameUtils.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2001-2004 The Apache Software Foundation.
2+
* Copyright 2001-2005 The Apache Software Foundation.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -79,7 +79,7 @@
7979
* @author Martin Cooper
8080
* @author <a href="mailto:jeremias@apache.org">Jeremias Maerki</a>
8181
* @author Stephen Colebourne
82-
* @version $Id: FilenameUtils.java,v 1.32 2004/12/10 22:36:56 scolebourne Exp $
82+
* @version $Id$
8383
* @since Commons IO 1.1
8484
*/
8585
public class FilenameUtils {
@@ -922,16 +922,16 @@ static String[] splitOnTokens(String text) {
922922
ArrayList list = new ArrayList();
923923
StringBuffer buffer = new StringBuffer();
924924
for (int i = 0; i < array.length; i++) {
925-
if (array[i] == '?' || array[i] == '*') {
926-
if (buffer.length() != 0) {
927-
list.add(buffer.toString());
928-
buffer.setLength(0);
929-
}
930-
list.add(new String(new char[] { array[i] }));
931-
} else {
932-
buffer.append(array[i]);
933-
}
934-
}
925+
if (array[i] == '?' || array[i] == '*') {
926+
if (buffer.length() != 0) {
927+
list.add(buffer.toString());
928+
buffer.setLength(0);
929+
}
930+
list.add(new String(new char[] { array[i] }));
931+
} else {
932+
buffer.append(array[i]);
933+
}
934+
}
935935
if (buffer.length() != 0) {
936936
list.add(buffer.toString());
937937
}

0 commit comments

Comments
 (0)