Skip to content
Snippets Groups Projects
Commit 0ed74e6d authored by Florian Hölzl's avatar Florian Hölzl
Browse files

YELLOW.

refs 2490
parent 852fed2a
No related branches found
No related tags found
No related merge requests found
...@@ -19,9 +19,7 @@ package org.fortiss.tooling.kernel; ...@@ -19,9 +19,7 @@ package org.fortiss.tooling.kernel;
import static org.apache.commons.lang.StringUtils.rightPad; import static org.apache.commons.lang.StringUtils.rightPad;
import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.initializeKernel; import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.initializeKernel;
import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.releaseKernel;
import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.startKernel; import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.startKernel;
import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.stopKernel;
/** /**
* Class for centrally initializing and starting the tooling kernel services. * Class for centrally initializing and starting the tooling kernel services.
...@@ -29,7 +27,7 @@ import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.stopKern ...@@ -29,7 +27,7 @@ import static org.fortiss.tooling.kernel.internal.ToolingKernelInternal.stopKern
* @author hoelzl * @author hoelzl
* @author $Author: hoelzl $ * @author $Author: hoelzl $
* @version $Rev: 18709 $ * @version $Rev: 18709 $
* @ConQAT.Rating YELLOW Hash: CF4E606E43CA19F7E26415B42EC54906 * @ConQAT.Rating YELLOW Hash: DA3686116ABE9ACDEC680C6AC5C3308A
*/ */
public final class ToolingKernel { public final class ToolingKernel {
/** Initialize the kernel. */ /** Initialize the kernel. */
...@@ -42,16 +40,6 @@ public final class ToolingKernel { ...@@ -42,16 +40,6 @@ public final class ToolingKernel {
startKernel(); startKernel();
} }
/** Stops the kernel. */
public static void stop() {
stopKernel();
}
/** Releases the kernel resources. */
public static void release() {
releaseKernel();
}
/** Prints the introduction message of the given phase */ /** Prints the introduction message of the given phase */
public static void printPhase(String phase) { public static void printPhase(String phase) {
phase = rightPad(phase, 40); phase = rightPad(phase, 40);
......
...@@ -27,7 +27,7 @@ import org.fortiss.tooling.kernel.internal.storage.eclipse.EclipseResourceStorag ...@@ -27,7 +27,7 @@ import org.fortiss.tooling.kernel.internal.storage.eclipse.EclipseResourceStorag
* @author hoelzl * @author hoelzl
* @author $Author: hoelzl $ * @author $Author: hoelzl $
* @version $Rev: 18709 $ * @version $Rev: 18709 $
* @ConQAT.Rating YELLOW Hash: 0FBB6C069550188F8F60CA7F75E42BF8 * @ConQAT.Rating YELLOW Hash: 53152037D4AE10A4FBBFCE0A969751D5
*/ */
public final class ToolingKernelInternal { public final class ToolingKernelInternal {
/** Initialize the kernel services. */ /** Initialize the kernel services. */
...@@ -66,14 +66,4 @@ public final class ToolingKernelInternal { ...@@ -66,14 +66,4 @@ public final class ToolingKernelInternal {
TransformationService.getInstance().startService(); TransformationService.getInstance().startService();
printPhase("Tooling Kernel started."); printPhase("Tooling Kernel started.");
} }
/** Stops the kernel. */
public static void stopKernel() {
// TODO Auto-generated method stub
}
/** Releases the kernel resources. */
public static void releaseKernel() {
// TODO Auto-generated method stub
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment