Skip to content

Commit e21ad83

Browse files
author
mstegmaier
authored
Merge branch 'master' into jparsec3
2 parents 3fd3972 + bb37c60 commit e21ad83

File tree

73 files changed

+276
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+276
-313
lines changed

org.coreasm.engine/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,23 @@
9191
<plugin>
9292
<artifactId>maven-jar-plugin</artifactId>
9393
<version>2.4</version>
94+
<executions>
95+
<execution>
96+
<goals>
97+
<goal>test-jar</goal>
98+
</goals>
99+
</execution>
100+
</executions>
94101
</plugin>
95102

96103
<plugin>
97104
<groupId>org.apache.maven.plugins</groupId>
98105
<artifactId>maven-compiler-plugin</artifactId>
106+
<version>3.6.0</version>
99107
<configuration>
100108
<source>1.8</source>
101109
<target>1.8</target>
110+
<useIncrementalCompilation>false</useIncrementalCompilation>
102111
</configuration>
103112
</plugin>
104113

org.coreasm.engine/src/org/coreasm/engine/CoreASMEngine.java

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -474,16 +474,6 @@ public void updateState(Set<Update> update)
474474
* @see #removeObserver(EngineObserver)
475475
*/
476476
public Collection<EngineObserver> getObservers();
477-
478-
/**
479-
* Waits for the engine to go to the idle or error mode. This
480-
* method should periodically put the current thread in
481-
* a sleep mode to avoid taking CPU time.
482-
*
483-
* @deprecated Use {@link #waitWhileBusy()} instead.
484-
*/
485-
@Deprecated
486-
public void waitForIdleOrError();
487477

488478
/**
489479
* Waits for the engine to go to the idle/error mode. This
@@ -497,10 +487,10 @@ public void updateState(Set<Update> update)
497487
/**
498488
* Returns <code>true</code> if the engine is
499489
* busy performing some operation. This condition is
500-
* used in {@link #waitForIdleOrError()} to wait
490+
* used in {@link #waitWhileBusy()} to wait
501491
* until the engine finishes its work.
502492
*
503-
* @see #waitForIdleOrError()
493+
* @see #waitWhileBusy()
504494
*/
505495
public boolean isBusy();
506496

0 commit comments

Comments
 (0)