Skip to content

Commit

Permalink
Add some missing trimDirectiveWhitespaces on JSPs
Browse files Browse the repository at this point in the history
  • Loading branch information
arey committed Jun 29, 2016
1 parent 7b488c6 commit 1e412c6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%@ page session="false" %>
<%@ page session="false" trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/owners/findOwners.jsp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%@ page session="false" %>
<%@ page session="false" trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/owners/ownerDetails.jsp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%@ page session="false" %>
<%@ page session="false" trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%@ page session="false" %>
<%@ page session="false" trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<%@ page session="false" %>
<%@ page session="false" trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
Expand Down

0 comments on commit 1e412c6

Please sign in to comment.