Skip to content

Commit

Permalink
Merge pull request #170 from skyluc/issue/removed-deprecated-imports
Browse files Browse the repository at this point in the history
Fixes more deprecated imports
  • Loading branch information
skyluc committed Nov 26, 2013
2 parents 3f22a3a + b842dd4 commit e49ba55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.scalaide.worksheet.completion

import scala.tools.eclipse.testsetup.TestProjectSetup
import scala.tools.nsc.util.OffsetPosition
import scala.reflect.internal.util.OffsetPosition
import scala.tools.eclipse.completion.CompletionProposal
import org.scalaide.worksheet.ScriptCompilationUnit
import scala.tools.eclipse.testsetup.SDTTestUtils
Expand Down Expand Up @@ -46,7 +46,7 @@ class CompletionTests {
for (i <- 0 until positions.size) {
val pos = positions(i)

val position = new scala.tools.nsc.util.OffsetPosition(src, pos)
val position = new OffsetPosition(src, pos)
var wordRegion = ScalaWordFinder.findWord(content, position.point)

// val selection = mock(classOf[ISelectionProvider])
Expand Down

0 comments on commit e49ba55

Please sign in to comment.