Skip to content

Commit

Permalink
Merge pull request #181 from powerflows/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mariuszkumor authored Mar 14, 2019
2 parents faec8b8 + aca9c6c commit e1b3f1f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
26 changes: 13 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,19 @@
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -363,19 +376,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface DecisionEngine {
/**
* @param decision Definition of decision
* @param decisionVariables Variables used in evaluation
* @return
* @return evaluation result
*/
DecisionResult evaluate(Decision decision, DecisionVariables decisionVariables);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface MethodBinding extends BoundMethod {

/**
* Reference to real method to which function call will be forwarded.
* @return
* @return method
*/
Method method();
}
2 changes: 1 addition & 1 deletion src/main/java/org/powerflows/dmn/io/xml/package-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Contains OMG DMN 1.1 file format reading capabilities.
* Reading:<br/>
* Reading:<br>
* <pre>
* new XmlDecisionReader().readAll(inputStream)
* </pre>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/powerflows/dmn/io/yaml/package-info.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
* Contains powerflows human friendly YAML decision table format reading and writing capabilities.
*
* Reading: <br/>
* Reading: <br>
* <pre>
* new YamlDecisionReader().readAll(inputStream)
* </pre>
* Writing:<br/>
* Writing:<br>
* <pre>
* new YamlDecisionWriter().write(decision, outputStream)
* </pre>
Expand Down

0 comments on commit e1b3f1f

Please sign in to comment.