ESAPI / esapi-java-legacy

ESAPI (The OWASP Enterprise Security API) is a free, open source, web application security control library that makes it easier for programmers to write lower-risk applications.
https://owasp.org/www-project-enterprise-security-api/
Other
610 stars 368 forks source link

Fix typo in comment in validation.properties files #808

Closed kwwall closed 11 months ago

kwwall commented 11 months ago

There is a typo where 2 consecutive lines have 'and' at the end of the one line, followed by an 'and' at the start of the next line, thereby having a double 'and'. Specifically, the lines that should be fixed by removing the " and " at the end of these lines are:

$ grep -n 'and $' $(find . -name validation.properties)
./configuration/esapi/validation.properties:17:# canonicalization. It is preferable to use the "get" methods (which throw exceptions) **and** 
./src/test/resources/esapi/validation.properties:30:# canonicalization. It is preferable to use the "get" methods (which throw exceptions) **and** 
kwwall commented 11 months ago

@robstoll is working on this as part of PR #807

kwwall commented 11 months ago

Closed via PR #807.