added pdm to pom

This commit is contained in:
hneemann 2016-07-15 14:49:21 +02:00
parent 3f8559e5cd
commit ab5e853814
2 changed files with 5 additions and 1 deletions

View File

@ -50,6 +50,10 @@
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>

View File

@ -31,7 +31,7 @@ public class DetermineJKStateMachine {
* @throws FormatterException FormatterException
*/
public DetermineJKStateMachine(String name, Expression e) throws ExpressionException, FormatterException {
String notName = FormatToExpression.FORMATTER_UNICODE.format(Not.not(new Variable(name)));
String notName = FormatToExpression.FORMATTER_UNICODE.format(not(new Variable(name)));
boolean wasK = false;
boolean wasJ = false;