// 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();
}
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) {
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) {
<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}" />