Skip to content
Snippets Groups Projects
Commit 73596c5a authored by brinn's avatar brinn
Browse files

minor: fix javadoc warning

SVN: 1758
parent 102de682
No related branches found
No related tags found
No related merge requests found
...@@ -435,8 +435,8 @@ public final class FileUtilities ...@@ -435,8 +435,8 @@ public final class FileUtilities
* *
* @param defaultFileName the default name for the new file if the digit pattern could not be found in its name. If * @param defaultFileName the default name for the new file if the digit pattern could not be found in its name. If
* empty then "1" will be appended to its name. * empty then "1" will be appended to its name.
* @param regex pattern to find out the counter. If <code>null</code> then {@link #ONE_OR_MORE_DIGITS} will be * @param regex pattern to find out the counter. If <code>null</code> then a default (<code>(\\d+)</code>) will be
* taken. The given <var>regex</var> must contain <code>(\\d+)</code> or <code>([0-9]+)</code>. * used. The given <var>regex</var> must contain <code>(\\d+)</code> or <code>([0-9]+)</code>.
*/ */
public final static File createNextNumberedFile(File path, Pattern regex, String defaultFileName) public final static File createNextNumberedFile(File path, Pattern regex, String defaultFileName)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment