diff options
author | terminaldweller <thabogre@gmail.com> | 2022-06-17 17:56:14 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-06-17 17:56:14 +0000 |
commit | 4b2a5b8b09b02de9e855a1e5e9a75101d6c334bc (patch) | |
tree | bb33c8ff297e6c9faaa91f43f1191734b05b440a /src/main/java/com/terminaldweller/doc/Doc.java | |
parent | CORS fix (diff) | |
download | mdrtl-4b2a5b8b09b02de9e855a1e5e9a75101d6c334bc.tar.gz mdrtl-4b2a5b8b09b02de9e855a1e5e9a75101d6c334bc.zip |
added comments
Diffstat (limited to 'src/main/java/com/terminaldweller/doc/Doc.java')
-rw-r--r-- | src/main/java/com/terminaldweller/doc/Doc.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/com/terminaldweller/doc/Doc.java b/src/main/java/com/terminaldweller/doc/Doc.java index 80247eb..35ee5fd 100644 --- a/src/main/java/com/terminaldweller/doc/Doc.java +++ b/src/main/java/com/terminaldweller/doc/Doc.java @@ -25,6 +25,7 @@ public class Doc { * @param id the id given by the db. * @param name the name of the documment given by the user. * @param lastModified the date of the last modification in unix epoch. + * @param body the actual text of the document. */ public Doc(Long id, String name, long lastModified, String body) { this.id = id; |