Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Do not parse @delimeters
  • Loading branch information
ryaneberly committed Jul 18, 2017
1 parent b56a6af commit 826b058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cflint/CFLint.java
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ private List<CFExpression> unpackTagExpressions(final Element elem) {
}
//Explicitly unpack cfloop
if (elem.getName().equalsIgnoreCase("cfloop")){
List<String> attributes = Arrays.asList("from","to","step","condition","array","list","delimiters");
List<String> attributes = Arrays.asList("from","to","step","condition","array","list");
for(Attribute attr: elem.getAttributes()){
if(attributes.contains(attr.getName().toLowerCase()) && attr.getValue().trim().length()>0){
try {
Expand Down

0 comments on commit 826b058

Please sign in to comment.