[O] Correct comments according to suggestions

This commit is contained in:
Hykilpikonna
2021-01-23 09:09:41 -05:00
parent 4f5fb9b0c0
commit 78ff88e7cd
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
### Setup environment ### Setup environment
1. Install Java `dnf install java-11-openjdk-devel` (And add an alias to your `.bashrc`) 1. Install Java 11 JDK (And add an alias to your `.bashrc`)
```shell ```shell
alias java11='/usr/lib/jvm/jre-11/bin/java' alias java11='/usr/lib/jvm/jre-11/bin/java'
+1
View File
@@ -75,6 +75,7 @@ compileTestKotlin {
} }
} }
// Remove version number from jar name for deployment
bootJar { bootJar {
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}" archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
} }
@@ -71,6 +71,7 @@ public class UserController {
/** /**
* Create salted hash for user's password * Create salted hash for user's password
* Format: "$username + $password".toLowerMd5();
* *
* @param username Unique username used as a salt * @param username Unique username used as a salt
* @param password Password initial hash * @param password Password initial hash