Skip to content
Snippets Groups Projects
Commit d9509e32 authored by Sören Henning's avatar Sören Henning
Browse files

Remove old, unused code

parent 99bd9a0b
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
......@@ -21,36 +21,6 @@ public final class TraceAnalysis {
final Execution<TraceAnalysisConfiguration> analysis = new Execution<>(traceAnalysisConfiguration);
analysis.executeBlocking();
// ******* TEMP
/*
* for (OperationCall operationCall : traceAnalysisConfiguration.getOperationCalls()) {
* System.out.println(operationCall.getOperation() + " " + operationCall.getDuration());
* for (OperationCall childrenOperationCall : operationCall.getChildren()) {
* System.out.println("+-->" + childrenOperationCall.getOperation() + " " + childrenOperationCall.getDuration());
* for (OperationCall cd2OperationCall : childrenOperationCall.getChildren()) {
* System.out.println("..+-->" + cd2OperationCall.getOperation() + " " + cd2OperationCall.getDuration());
* }
* }
* }
* // *************
*
* try (Writer writer = new BufferedWriter(new OutputStreamWriter(
* new FileOutputStream("example/event monitoring log/output/call-graph.dot"), "utf-8"))) {
* writer.write("something");
* writer.write("\n");
* writer.write("second line");
* } catch (UnsupportedEncodingException e1) {
* // TODO Auto-generated catch block
* e1.printStackTrace();
* } catch (FileNotFoundException e1) {
* // TODO Auto-generated catch block
* e1.printStackTrace();
* } catch (IOException e1) {
* // TODO Auto-generated catch block
* e1.printStackTrace();
* }
*/
}
}
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