Skip to content

Commit

Permalink
feat: add link docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AzaleeX committed Sep 29, 2024
1 parent 7ffdb77 commit c18ae1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/sculk/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,8 @@ private void parseList(String content) {
}

private String writeProperties() {
StringBuilder content = new StringBuilder("#Properties Config file\r\n#" + new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()) + "\r\n");
//TODO: add redirection to website Docs (https://docs.sculkmp.org/)
StringBuilder content = new StringBuilder("#Properties Config file\r\n#" + new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()) + "\r\n#https://docs.sculkmp.org/" + "\r\n");
for (Object o : this.config.entrySet()) {
Map.Entry entry = (Map.Entry) o;
Object v = entry.getValue();
Expand Down

0 comments on commit c18ae1b

Please sign in to comment.