Skip to content

Commit

Permalink
More merge fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
chumer committed Mar 26, 2018
1 parent 9ab90ae commit 4ac1adf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@
*/
package com.oracle.truffle.tools.profiler.test;


import com.oracle.truffle.tools.profiler.CPUSampler;
import com.oracle.truffle.tools.profiler.ProfilerNode;
import com.oracle.truffle.tools.profiler.impl.CPUSamplerInstrument;
import org.graalvm.polyglot.Instrument;

import java.util.Collection;
import java.util.Iterator;

Expand Down Expand Up @@ -169,7 +163,7 @@ public void testCorrectRootStructureRecursive() {
Assert.assertEquals("foo", foo.getRootName());
checkTimeline(foo.getPayload());

// RECURSIVE_CALL does recutions to depth 10
// RECURSIVE_CALL does recursions to depth 10
for (int i = 0; i < 10; i++) {
children = foo.getChildren();
Assert.assertEquals(1, children.size());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
*/
package com.oracle.truffle.tools.profiler.test;

import com.oracle.truffle.tools.profiler.CPUTracer;
import com.oracle.truffle.tools.profiler.impl.CPUTracerInstrument;
import org.graalvm.polyglot.Instrument;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.graalvm.polyglot.Source;
import org.junit.Assert;
import org.junit.Before;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@
*/
package com.oracle.truffle.tools.profiler.test;

import com.oracle.truffle.tools.profiler.MemoryTracer;
import com.oracle.truffle.tools.profiler.ProfilerNode;
import com.oracle.truffle.tools.profiler.impl.MemoryTracerInstrument;
import org.graalvm.polyglot.Instrument;
import java.util.Collection;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
Expand Down

0 comments on commit 4ac1adf

Please sign in to comment.