Skip to content

Commit c8ad779

Browse files
author
Scott Sanders
committed
Should be static :)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140292 13f79535-47bb-0310-9956-ffa450edef68
1 parent 26e200f commit c8ad779

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
* @author <a href="mailto:sanders@apache.org">Scott Sanders</a>
7373
* @author <a href="mailto:dlr@finemaltcoding.com">Daniel Rall</a>
7474
* @author <a href="mailto:Christoph.Reck@dlr.de">Christoph.Reck</a>
75-
* @version $Id: FileUtils.java,v 1.4 2002/01/28 10:01:25 sanders Exp $
75+
* @version $Id: FileUtils.java,v 1.5 2002/01/28 10:03:11 sanders Exp $
7676
*/
7777
public class FileUtils {
7878

@@ -372,7 +372,7 @@ private static boolean isValidFile(String file, String[] extensions) {
372372
/**
373373
* Simple way to make a directory
374374
*/
375-
public void mkdir(String dir) {
375+
public static void mkdir(String dir) {
376376
File file = new File(dir);
377377
if (!file.exists()) {
378378
file.mkdirs();

0 commit comments

Comments
 (0)