-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
*/ | ||
|
||
/* | ||
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* Copyright (c) 2007, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* Portions Copyright (c) 2017, 2020, Chris Fraire <[email protected]>. | ||
* Portions Copyright (c) 2020, Aleksandr Kirillov <[email protected]>. | ||
*/ | ||
|
@@ -1510,7 +1510,7 @@ public void encodeObject(OutputStream out) { | |
} | ||
|
||
public static Configuration read(File file) throws IOException { | ||
LOGGER.log(Level.INFO, "Reading configuration from {0}", file.getCanonicalPath()); | ||
LOGGER.log(Level.INFO, "Reading configuration from ''{0}''", file.getCanonicalPath()); | ||
try (FileInputStream in = new FileInputStream(file)) { | ||
return decodeObject(in); | ||
} | ||
|