Skip to content

Commit 0ac87b1

Browse files
committed
Better name for private method.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1501745 13f79535-47bb-0310-9956-ffa450edef68
1 parent 70e0519 commit 0ac87b1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2637,7 +2637,7 @@ private static BigInteger sizeOfDirectoryBig0(final File directory) {
26372637
for (final File file : files) {
26382638
try {
26392639
if (!isSymlink(file)) {
2640-
size = size.add(sizeOBig0(file));
2640+
size = size.add(sizeOfBig0(file));
26412641
}
26422642
} catch (final IOException ioe) {
26432643
// Ignore exceptions caught when asking if a File is a symlink.
@@ -2648,7 +2648,7 @@ private static BigInteger sizeOfDirectoryBig0(final File directory) {
26482648
}
26492649

26502650
// internal method; if file does not exist will return 0
2651-
private static BigInteger sizeOBig0(final File fileOrDir) {
2651+
private static BigInteger sizeOfBig0(final File fileOrDir) {
26522652
if (fileOrDir.isDirectory()) {
26532653
return sizeOfDirectoryBig0(fileOrDir);
26542654
} else {

0 commit comments

Comments
 (0)