]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
@TODO is not valid, only use TODO
authorRoland Haeder <roland@mxchange.org>
Mon, 31 Aug 2015 07:41:30 +0000 (09:41 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 31 Aug 2015 07:41:30 +0000 (09:41 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java
web/index.jsp

index 4154800559d314ddf999a6106bb178b2c2976509..818b6735e4642b2e949828dc805c0f9e2016d077 100644 (file)
@@ -79,7 +79,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                // Is the bundle initialized?
                if (!this.isBundledInitialized()) {
                        // Temporary initialize default bundle
-                       // @TODO The enum Gender uses this
+                       // TODO The enum Gender uses this
                        this.initBundle();
                }
 
@@ -754,13 +754,13 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                                                this.doAdminAddProduct(request);
                                        }
                                } else if (request.getParameter("edit") != null) { //NOI18N
-                                       // @TODO
+                                       // TODO
                                } else if (request.getParameter("delete") != null) { //NOI18N
-                                       // @TODO
+                                       // TODO
                                }
 
                                // Redirect to proper URL
-                               // @TODO Commented out for developing:
+                               // TODO Commented out for developing:
                                //response.sendRedirect(request.getContextPath() + "/finished.jsp");
                        }
                } catch (final IOException | SQLException | BadTokenException | CorruptedDatabaseFileException | ProductTitleAlreadyUsedException | NoSuchMethodException | IllegalAccessException | InvocationTargetException | IllegalArgumentException ex) {
@@ -804,13 +804,13 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                                                this.doAdminAddCategory(request);
                                        }
                                } else if (request.getParameter("edit") != null) { //NOI18N
-                                       // @TODO
+                                       // TODO
                                } else if (request.getParameter("delete") != null) { //NOI18N
-                                       // @TODO
+                                       // TODO
                                }
 
                                // Redirect to proper URL
-                               // @TODO Commented out for developing:
+                               // TODO Commented out for developing:
                                //response.sendRedirect(request.getContextPath() + "/finished.jsp");
                        }
                } catch (final IOException | SQLException | BadTokenException | CorruptedDatabaseFileException | CategoryTitleAlreadyUsedException | NoSuchMethodException | IllegalAccessException | InvocationTargetException | IllegalArgumentException ex) {
index 662e3fa0592a5bf92a9ed03e3d0f4f92634d7004..b126b358d017024767ebf6b3eeb727088be51fcc 100644 (file)
 
 <jsp:setProperty name="controller" property="application" value="${pageContext.servletContext}" />
 <jsp:setProperty name="controller" property="basket" value="${basket}" />
-<%controller.init();%>
+<%
+       // TODO: Can be removed later
+       controller.init();
+%>
 
 <c:set var="basePath" value="${pageContext.request.contextPath}" />