Skip to content

Commit

Permalink
v3.14.1 release (^.^)YYa!!
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Mar 7, 2022
1 parent 5ec6972 commit 6951233
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/jboot/app/JbootApplicationConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public String toString() {
", mode='" + mode + '\'' +
", version='" + version + '\'' +
", proxy='" + proxy + '\'' +
", config='" + jfinalConfig + '\'' +
// ", config='" + jfinalConfig + '\'' +
", listener='" + listener + '\'' +
", listenerPackage='" + listenerPackage + '\'' +
" }";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/jboot/app/config/JbootProp.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public JbootProp(String fileName, String encoding) {

if (inputStream != null) {
properties.load(new InputStreamReader(inputStream, encoding));
} else {
} else if (!fileName.contains("-")) {
System.err.println("Warning: Can not load properties file in classpath, file name: " + fileName);
}
} catch (Exception e) {
Expand Down

0 comments on commit 6951233

Please sign in to comment.