From: Roland Haeder Date: Fri, 28 Aug 2015 12:32:07 +0000 (+0200) Subject: use else and not continue X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8a7c5f289a340f1a7cd7cc7fbb26003630e1e50a;p=pizzaservice-war.git use else and not continue Signed-off-by:Roland Häder --- diff --git a/web/index.jsp b/web/index.jsp index 625e4b93..585303d6 100644 --- a/web/index.jsp +++ b/web/index.jsp @@ -89,53 +89,52 @@ ${controller.init()} if (item != null) { // Some nice output ... %> - - - - - - - - - -
- Warenkorb - - <%=item.getAmount()%> - - <%=product.getTitle()%> - - -
+ + + + + + + + + +
+ Warenkorb + + <%=item.getAmount()%> + + <%=product.getTitle()%> + + +
<% - // Then skip this item - continue; - } - %> -
- - - - - - - - - -
- - - - - - - <%=product.getTitle()%> - - -
-
+ } else { + %> +
+ + + + + + + + + +
+ + + + + + + <%=product.getTitle()%> + + +
+
<% - } + } + } %>