Skip to content

Commit 4d378db

Browse files
committed
[refactor] address review in FileErrorCode
1 parent 7926887 commit 4d378db

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

extensions/modules/file/src/main/java/org/exist/xquery/modules/file/FileErrorCode.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@
2525
import org.exist.xquery.ErrorCodes;
2626

2727
class FileErrorCode extends ErrorCodes.ErrorCode {
28-
public static final ErrorCodes.ErrorCode DIRECTORY_NOT_FOUND = new FileErrorCode("DIRECTORY_NOT_FOUND", "The directory could not be found.");
28+
public static final ErrorCodes.ErrorCode DIRECTORY_NOT_FOUND = new FileErrorCode("DIRECTORY_NOT_FOUND",
29+
"The directory could not be found.");
2930

30-
FileErrorCode(String code, String description) {
31+
FileErrorCode(final String code, final String description) {
3132
super(new QName(code, FileModule.NAMESPACE_URI, FileModule.PREFIX), description);
3233
}
3334
}

0 commit comments

Comments
 (0)