This commit is contained in:
Michael Hoennig 2024-07-22 05:52:42 +02:00
parent b012225c8b
commit ccb0ee9c0f
2 changed files with 4 additions and 1 deletions

View File

@ -56,7 +56,8 @@ function importLegacyData() {
echo "using environment (with ending ';' for use in IntelliJ IDEA):"
echo "--- BEGIN: ---"
set | grep ^HSADMINNG_ | sed 's/$/;/'
echo "---- END. ----\n"
echo "---- END. ----"
echo
echo ./gradlew $target --rerun
./gradlew $target --rerun

View File

@ -20,8 +20,10 @@ import jakarta.servlet.http.HttpServletRequest;
import jakarta.validation.constraints.NotNull;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.io.Reader;
import java.io.StringReader;
import java.io.StringWriter;