15 lines
284 B
Java
15 lines
284 B
Java
package flintstones.application.debug.handler;
|
|
|
|
import org.eclipse.e4.core.di.annotations.Execute;
|
|
|
|
import flintstones.helper.data.text.DebugStream;
|
|
|
|
@SuppressWarnings("javadoc")
|
|
public class SystemOutDebugHandler {
|
|
|
|
@Execute
|
|
private void execute() {
|
|
DebugStream.activate();
|
|
}
|
|
}
|