Skip to content

Commit

Permalink
[eol] Fix end of file markers
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Aug 26, 2023
1 parent bf7a76e commit 0f4740a
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
.mvn/wrapper/maven-wrapper.jar
*.releaseBackup
*.properties
.env
.env
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ FROM openjdk:17.0.2
COPY . /usr/src/myapp
WORKDIR /usr/src/myapp
RUN ./mvnw clean package
CMD ./mvnw cargo:run -P tomcat90
CMD ./mvnw cargo:run -P tomcat90
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ public Item getItem(String itemId) {
public boolean isItemInStock(String itemId) {
return itemMapper.getInventoryQuantity(itemId) > 0;
}
}
}
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/account/NewAccountForm.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@

</stripes:form></div>

<%@ include file="../common/IncludeBottom.jsp"%>
<%@ include file="../common/IncludeBottom.jsp"%>
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/cart/Cart.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@
<div id="Separator">&nbsp;</div>
</div>

<%@ include file="../common/IncludeBottom.jsp"%>
<%@ include file="../common/IncludeBottom.jsp"%>
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/cart/Checkout.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@

</div>

<%@ include file="../common/IncludeBottom.jsp"%>
<%@ include file="../common/IncludeBottom.jsp"%>
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/common/Error.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

<stripes:messages />

<%@ include file="../common/IncludeBottom.jsp"%>
<%@ include file="../common/IncludeBottom.jsp"%>
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/common/IncludeBottom.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
</div>

</body>
</html>
</html>
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/common/IncludeTop.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@

</div>

<div id="Content"><stripes:messages />
<div id="Content"><stripes:messages />
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/order/NewOrderForm.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@

</stripes:form></div>

<%@ include file="../common/IncludeBottom.jsp"%>
<%@ include file="../common/IncludeBottom.jsp"%>
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/order/ShippingForm.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@

</stripes:form></div>

<%@ include file="../common/IncludeBottom.jsp"%>
<%@ include file="../common/IncludeBottom.jsp"%>
2 changes: 1 addition & 1 deletion src/site/site_es.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@

<menu ref="reports"/>
</body>
</project>
</project>
2 changes: 1 addition & 1 deletion src/site/site_ja.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@

<menu ref="reports"/>
</body>
</project>
</project>
2 changes: 1 addition & 1 deletion src/site/site_ko.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@

<menu ref="reports"/>
</body>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,4 @@ void shouldCallTheMapperToInsert() {
verify(itemMapper).updateInventoryQuantity(eq(expectedItemParam));
}

}
}

0 comments on commit 0f4740a

Please sign in to comment.