ソースを参照

no semantic change - avoiding warning about static members accessed via non-static references

tags/mostlyLastEclipse2xTree_20040112
wisberg 20年前
コミット
4880b54e69

+ 2
- 2
testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java ファイルの表示

@@ -1073,8 +1073,8 @@ public class CompilerRun implements IAjcRun {
if (!permitAnyCompiler
&& (!(ReflectionFactory.ECLIPSE.equals(compilerName)
|| ReflectionFactory.OLD_AJC.equals(compilerName)
|| CRSOPTIONS.AJDE_COMPILER.equals(compilerName)
|| CRSOPTIONS.AJCTASK_COMPILER.equals(compilerName)
|| CRSOptions.AJDE_COMPILER.equals(compilerName)
|| CRSOptions.AJCTASK_COMPILER.equals(compilerName)
|| permitAnyCompiler
))) {
//|| BUILDER_COMPILER.equals(compilerName))

+ 1
- 1
testing/src/org/aspectj/testing/taskdefs/AjcTaskCompileCommand.java ファイルの表示

@@ -92,7 +92,7 @@ public class AjcTaskCompileCommand implements ICommand {
long nextCheck = curTime + checkInterval;
while (nextCheck > curTime) {
try {
thread.sleep(nextCheck - curTime);
Thread.sleep(nextCheck - curTime);
} catch (InterruptedException e) {
// ignore
}

+ 1
- 1
testing/testsrc/org/aspectj/testing/taskdefs/AjcTaskCompileCommandTest.java ファイルの表示

@@ -239,7 +239,7 @@ class MessageAdder implements Runnable {
while (!stop && (curTime < timeout)
&& (curTime < targetTime)) {
try {
thread.sleep(targetTime - curTime);
Thread.sleep(targetTime - curTime);
} catch (InterruptedException e) {
// ignore
}

読み込み中…
キャンセル
保存