Skip to content
Snippets Groups Projects
Commit 7c5d498c authored by Kari Turtiainen's avatar Kari Turtiainen
Browse files

Update SiteGen.java, added "/" to the ending html tag.

parent f486d336
No related branches found
No related tags found
1 merge request!1Update SiteGen.java, added "/" to the ending html tag. Pipeline passes now.
Pipeline #45083 passed
......@@ -18,7 +18,7 @@ class SiteGen {
"<h1>" + siteTitle + "</h1>" +
"<ul>" + movieList.stream().map(i -> "<li>"+ i + "</li>").collect(Collectors.joining()) + "</ul>" +
"</body>" +
"<html>";
"</html>";
public static void main(String args[]) throws Exception {
Files.createDirectory(Paths.get("public/"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment