Skip to content

Commit 732ad05

Browse files
committed
Fixed javadoc errors
1 parent de3758b commit 732ad05

36 files changed

Lines changed: 36 additions & 37 deletions

File tree

algorithms/dhc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-algorithms</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/discrimination-tree/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-algorithms</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/features/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-algorithms</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/kearns-vazirani/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>de.learnlib</groupId>
55
<artifactId>learnlib-algorithms</artifactId>
6-
<version>0.11.2-SNAPSHOT</version>
6+
<version>0.11.1-SNAPSHOT</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<artifactId>learnlib-kearns-vazirani</artifactId>

algorithms/lstar-baseline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-algorithms</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/lstar-generic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-algorithms</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/nlstar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>de.learnlib</groupId>
55
<artifactId>learnlib-algorithms</artifactId>
6-
<version>0.11.2-SNAPSHOT</version>
6+
<version>0.11.1-SNAPSHOT</version>
77
</parent>
88
<artifactId>learnlib-nlstar</artifactId>
99
<dependencies>

algorithms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-parent</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/ttt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://www.gnu.de/documents/lgpl.en.html.
2323
<parent>
2424
<artifactId>learnlib-algorithms</artifactId>
2525
<groupId>de.learnlib</groupId>
26-
<version>0.11.2-SNAPSHOT</version>
26+
<version>0.11.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

algorithms/ttt/src/main/java/de/learnlib/algorithms/ttt/base/TTTHypothesis.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public T getTransition(TTTState<I,D> state, I input) {
8383

8484
/**
8585
* Checks whether this automaton was initialized (i.e.,
86-
* {@link #initialize(boolean)} has been called).
86+
* {@link #initialize()} has been called).
8787
*
8888
* @return {@code true} if this automaton was initialized, {@code false}
8989
* otherwise.
@@ -96,7 +96,6 @@ public boolean isInitialized() {
9696
* Initializes the automaton, adding an initial state. Whether or not the
9797
* initial state is accepting needs to be known at this point.
9898
*
99-
* @param initialAccepting whether or not the initial state is accepting
10099
* @return the initial state of this newly initialized automaton
101100
*/
102101
public TTTState<I,D> initialize() {

0 commit comments

Comments
 (0)