Commit 6f5f1947 authored by Shruti Ramenahalli's avatar Shruti Ramenahalli
Browse files

Final changes for dissertation

parent 1b662663
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpath>
<classpathentry including="**/*.java" kind="src" output="target/classes" path="src"> <classpathentry including="**/*.java" kind="src" output="target/classes" path="src">
<attributes> <attributes>
<attribute name="optional" value="true"/> <attribute name="gradle_scope" value="main"/>
<attribute name="maven.pomderived" value="true"/> <attribute name="gradle_used_by_scope" value="main,test"/>
</attributes> <attribute name="optional" value="true"/>
</classpathentry> <attribute name="maven.pomderived" value="true"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> </attributes>
<attributes> </classpathentry>
<attribute name="maven.pomderived" value="true"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
</attributes> <attributes>
</classpathentry> <attribute name="maven.pomderived" value="true"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> </attributes>
<attributes> </classpathentry>
<attribute name="maven.pomderived" value="true"/> <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
</attributes> <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
</classpathentry> <attributes>
<classpathentry kind="output" path="target/classes"/> <attribute name="maven.pomderived" value="true"/>
</classpath> </attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
#Sun Aug 22 10:27:00 IST 2021
gradle.version=6.0
...@@ -10,6 +10,11 @@ ...@@ -10,6 +10,11 @@
<arguments> <arguments>
</arguments> </arguments>
</buildCommand> </buildCommand>
<buildCommand>
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand> <buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name> <name>org.eclipse.m2e.core.maven2Builder</name>
<arguments> <arguments>
...@@ -19,5 +24,6 @@ ...@@ -19,5 +24,6 @@
<natures> <natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature> <nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures> </natures>
</projectDescription> </projectDescription>
connection.project.dir=
eclipse.preferences.version=1
...@@ -7,8 +7,10 @@ org.eclipse.jdt.core.compiler.debug.lineNumber=generate ...@@ -7,8 +7,10 @@ org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
org.eclipse.jdt.core.compiler.release=disabled org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8 org.eclipse.jdt.core.compiler.source=1.8
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
......
...@@ -89,7 +89,7 @@ public abstract class PeriodicOperation<T extends HostComponent, R> extends ...@@ -89,7 +89,7 @@ public abstract class PeriodicOperation<T extends HostComponent, R> extends
@Override @Override
protected final void execute() { protected final void execute() {
if (counter > 0) { if (counter > 0) {
// stop prevous iteration, notify callback // stop previous iteration, notify callback
if (!isFinished()) { if (!isFinished()) {
operationTimeoutOccured(); operationTimeoutOccured();
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment