Skip to content

Commit 929a59a

Browse files
committed
Comment: Remove unnecessary Latin acronym
1 parent a03781d commit 929a59a

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

RELEASE-NOTES.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ o Fix implicit narrowing conversion in compound assignment in Unsynchro
4444
o IO-860: Missing reserved file names in FileSystem.WINDOWS (superscript digits for COM and LPT). Thanks to Stefan Feenstra, Gary Gregory.
4545
o IO-856: FileUtils.listFiles(final File, String[], boolean) can throw NoSuchFileException #697, #699. Thanks to Thomas Hartwig, Gary Gregory.
4646
o IO-859: FileUtils.forceDelete on non-existent file on Windows throws IOException rather than FileNotFoundException. Thanks to JD Dean, Gary Gregory.
47-
o Use Unicode escapes for superscript characters. #701. Thanks to �amonn McManus.
48-
o IO-863: Recent incompatible change to FileUtils.listFiles re extensions, see also IO-856. Thanks to �amonn McManus, Gary Gregory.
47+
o Use Unicode escapes for superscript characters. #701. Thanks to �amonn McManus.
48+
o IO-863: Recent incompatible change to FileUtils.listFiles re extensions, see also IO-856. Thanks to �amonn McManus, Gary Gregory.
4949
o IO-857: Javadoc: Update details for PathUtils "clean" behavior. Thanks to Dmitry, Gary Gregory.
5050

5151
Changes
@@ -853,7 +853,7 @@ Fixed Bugs
853853
* IO-749: FileUtils.listFiles() does not list matching files if File parameter is a symbolic link. Thanks to haihuiyang, Gary Gregory.
854854
* Fix typo in Javadocs for FileUtils#convertFileCollectionToFileArray() #276. Thanks to niranjanghule, Gary Gregory.
855855
* Avoid Code Duplication: Reuse Sleep from ThreadMonitor #66. Thanks to DaGeRe, Gary Gregory.
856-
* IO-750: FileUtils.iterateFiles also lists directories. Thanks to Sita Ge�ner, Sebastian Peters, Gary Gregory.
856+
* IO-750: FileUtils.iterateFiles also lists directories. Thanks to Sita Ge�ner, Sebastian Peters, Gary Gregory.
857857
* IO-721: Wrong exception message in FileUtils.setLastModified(File, File). Thanks to Dirk Heinrichs, Gary Gregory.
858858
* IO-717: Infinite loop in ReaderInputStream instead of throwing exception for CodingErrorAction.REPORT. Thanks to Marcono1234, Gary Gregory.
859859
* IO-716: ReaderInputStream enter infinite loop for too small buffer sizes. Thanks to Marcono1234, Gary Gregory.
@@ -896,7 +896,7 @@ Fixed Bugs
896896
* IO-611: FilenameUtils.normalize javadoc and tests #383. Thanks to Fedor Urvanov.
897897
* IO-611: Better docs in IOUtils and IOUtils.byteArray(int size) #374. Thanks to ArdenL-Liu, Bruno P. Kinoshita, Gary Gregory.
898898
* IO-782: SequenceReader should close readers when its close method is called #391. Thanks to Matteo Di Giovinazzo, Gary Gregory.
899-
* IO-790: Fix symbolic link file filter #450. Thanks to Miguel Mu�oz, Gary Gregory.
899+
* IO-790: Fix symbolic link file filter #450. Thanks to Miguel Mu�oz, Gary Gregory.
900900
* IO-790: Apply nanoseconds precision for QueueInputStream timeout duration. #453. Thanks to maxxedev, Gary Gregory, Bruno P. Kinoshita.
901901
* Fix overflow for FileUtilsTest constants #456. Thanks to Marcono1234.
902902
* Serialization is deprecated and will be removed in 3.0. Thanks to Gary Gregory.
@@ -1274,7 +1274,7 @@ Changes
12741274
* IO-628: Migration to JUnit Jupiter #97. Thanks to Allon Mureinik.
12751275
* IO-630: Deprecate org.apache.commons.io.output.NullOutputStream.NullOutputStream() in favor of org.apache.commons.io.output.NullOutputStream.NULL_OUTPUT_STREAM. Thanks to Gary Gregory.
12761276
* IO-629: FileUtils#forceDelete should use Files#delete rather than File#delete so exception messages includes reason for failure. Thanks to Ian Springer, Ian Springer, Gary Gregory.
1277-
* IO-634: Make getCause synchronized and use a Deque instead of a Stack #64. Thanks to V�clav Haisman, Bruno P. Kinoshita, Gary Gregory.
1277+
* IO-634: Make getCause synchronized and use a Deque instead of a Stack #64. Thanks to V�clav Haisman, Bruno P. Kinoshita, Gary Gregory.
12781278
* Update tests from Apache Commons Lang 3.9 to 3.10. Thanks to Gary Gregory.
12791279
* Update tests org.junit-pioneer:junit-pioneer 0.3.0 -> 0.6.0. Thanks to Gary Gregory.
12801280
* Update tests org.junit.jupiter:junit-jupiter 5.5.2 -> 5.6.2. Thanks to Gary Gregory.
@@ -1488,14 +1488,14 @@ Fixed Bugs
14881488
* IO-484: FilenameUtils should handle embedded null bytes Thanks to Philippe Arteau.
14891489
* IO-481: Changed/Corrected algorithm for waitFor
14901490
* IO-428: BOMInputStream.skip returns wrong count if stream contains no BOM Thanks to Stefan Gmeiner.
1491-
* IO-488: FileUtils.waitFor(...) swallows thread interrupted status Thanks to Bj�rn Buchner.
1491+
* IO-488: FileUtils.waitFor(...) swallows thread interrupted status Thanks to Bj�rn Buchner.
14921492
* IO-452: Support for symlinks with missing target. Added support for JDK7 symlink features when present Thanks to David Standish.
14931493
* IO-453: Regression in FileUtils.readFileToString from 2.0.1 Thanks to Steven Christou.
14941494
* IO-451: ant test fails - resources missing from test classpath Thanks to David Standish.
14951495
* IO-435: Document that FileUtils.deleteDirectory, directoryContains and cleanDirectory
14961496
may throw an IllegalArgumentException in case the passed directory does not
14971497
exist or is not a directory. Thanks to Dominik Stadler.
1498-
* IO-424: Javadoc fixes, mostly to appease 1.8.0 Thanks to Ville Skytt�.
1498+
* IO-424: Javadoc fixes, mostly to appease 1.8.0 Thanks to Ville Skytt�.
14991499
* IO-389: FileUtils.sizeOfDirectory can throw IllegalArgumentException Thanks to Austin Doupnik.
15001500
* IO-390: FileUtils.sizeOfDirectoryAsBigInteger can overflow.
15011501
Ensure that recursive calls all use BigInteger
@@ -1530,7 +1530,7 @@ Changes
15301530
* IO-462: IOExceptionWithCause no longer needed
15311531
* IO-422: Deprecate Charsets Charset constants in favor of Java 7's java.nio.charset.StandardCharsets
15321532
* IO-239: Convert IOCase to a Java 1.5+ Enumeration
1533-
[N.B. this is binary compatible]
1533+
[this is binary compatible]
15341534
* IO-328: getPrefixLength returns null if filename has leading slashes
15351535
Javadoc: add examples to show correct behavior; add unit tests
15361536
* IO-299: FileUtils.listFilesAndDirs includes original dir in results even when it doesn't match filter
@@ -1641,7 +1641,7 @@ New features
16411641
* Allow applications to provide buffer (or size) for copyLarge methods. Issue: IO-308. Thanks to Manoj Mokashi.
16421642
* New copyLarge() method in IOUtils that takes additional offset, length arguments Issue: IO-305. Thanks to Manoj Mokashi.
16431643
* Use terabyte (TB), petabyte (PB) and exabyte (EB) in FileUtils.byteCountToDisplaySize(long size) Issue: IO-287. Thanks to Ron Kuris, Gary Gregory.
1644-
* FileUtils.listFiles() doesn't return directories Issue: IO-173. Thanks to Marcos Vin�cius da Silva.
1644+
* FileUtils.listFiles() doesn't return directories Issue: IO-173. Thanks to Marcos Vin�cius da Silva.
16451645
* CharSequenceInputStream to efficiently stream content of a CharSequence Issue: IO-297. Thanks to Oleg Kalnichevski.
16461646
* The second constructor of Tailer class does not pass 'delay' to the third one Issue: IO-304. Thanks to liangly.
16471647
* TeeOutputStream does not call branch.close() when main.close() throws an exception Issue: IO-303. Thanks to fabian.barney.

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1942,7 +1942,7 @@ The <action> type attribute can be add,update,fix,remove.
19421942
</action>
19431943
<action issue="IO-239" dev="sebb" type="update">
19441944
Convert IOCase to a Java 1.5+ Enumeration
1945-
[N.B. this is binary compatible]
1945+
[this is binary compatible]
19461946
</action>
19471947
<action issue="IO-233" dev="sebb" type="add">
19481948
Add Methods for Buffering Streams/Writers To IOUtils

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ private static char toSeparator(final boolean unixSeparator) {
15871587
* wildcardMatch("c.txt", "*.???") --&gt; true
15881588
* wildcardMatch("c.txt", "*.????") --&gt; false
15891589
* </pre>
1590-
* N.B. the sequence "*?" does not work properly at present in match strings.
1590+
* The sequence "*?" does not work properly at present in match strings.
15911591
*
15921592
* @param fileName the file name to match on
15931593
* @param wildcardMatcher the wildcard string to match against
@@ -1604,7 +1604,7 @@ public static boolean wildcardMatch(final String fileName, final String wildcard
16041604
* <p>
16051605
* The wildcard matcher uses the characters '?' and '*' to represent a
16061606
* single or multiple (zero or more) wildcard characters.
1607-
* N.B. the sequence "*?" does not work properly at present in match strings.
1607+
* The sequence "*?" does not work properly at present in match strings.
16081608
*
16091609
* @param fileName the file name to match on
16101610
* @param wildcardMatcher the wildcard string to match against
@@ -1705,7 +1705,7 @@ public static boolean wildcardMatch(final String fileName, final String wildcard
17051705
* wildcardMatch("c.txt", "*.???") --&gt; true
17061706
* wildcardMatch("c.txt", "*.????") --&gt; false
17071707
* </pre>
1708-
* N.B. the sequence "*?" does not work properly at present in match strings.
1708+
* The sequence "*?" does not work properly at present in match strings.
17091709
*
17101710
* @param fileName the file name to match on
17111711
* @param wildcardMatcher the wildcard string to match against

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*/
5151
public class LineIterator implements Iterator<String>, Closeable {
5252

53-
// N.B. This class deliberately does not implement Iterable, see https://issues.apache.org/jira/browse/IO-181
53+
// This class deliberately does not implement Iterable, see https://issues.apache.org/jira/browse/IO-181
5454

5555
/**
5656
* Closes a {@link LineIterator} quietly.

src/site/xdoc/upgradeto2_5.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ limitations under the License.
123123
o IO-462: IOExceptionWithCause no longer needed
124124
o IO-422: Deprecate Charsets Charset constants in favor of Java 7's java.nio.charset.StandardCharsets
125125
o IO-239: Convert IOCase to a Java 1.5+ Enumeration
126-
[N.B. this is binary compatible]
126+
[this is binary compatible]
127127
o IO-328: getPrefixLength returns null if filename has leading slashes
128128
Javadoc: add examples to show correct behavior; add unit tests
129129
o IO-299: FileUtils.listFilesAndDirs includes original dir in results even when it doesn't match filter

0 commit comments

Comments
 (0)