Skip to content

Commit e266cfa

Browse files
authored
Merge pull request #328 from ashawley/drop-elem-process
Remove Elem.xmlToProcess and Elem.processXml
2 parents 111265a + d51da3a commit e266cfa

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

build.sbt

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
9191
exclude[MissingTypesProblem]("scala.xml.Unparsed"),
9292
exclude[DirectMissingMethodProblem]("scala.xml.Elem.this"),
9393
exclude[DirectMissingMethodProblem]("scala.xml.Elem.apply"),
94+
exclude[DirectMissingMethodProblem]("scala.xml.Elem.processXml"),
95+
exclude[DirectMissingMethodProblem]("scala.xml.Elem.xmlToProcess"),
9496
// Scala 2.12 deprecated mutable.Stack, so we broke
9597
// binary compatibility for 2.0.0 in the following way:
9698
exclude[IncompatibleMethTypeProblem]("scala.xml.parsing.FactoryAdapter.scopeStack_="),

shared/src/main/scala/scala/xml/Elem.scala

-26
Original file line numberDiff line numberDiff line change
@@ -28,32 +28,6 @@ object Elem {
2828
case _: SpecialNode | _: Group => None
2929
case _ => Some((n.prefix, n.label, n.attributes, n.scope, n.child.toSeq))
3030
}
31-
32-
import scala.sys.process._
33-
import scala.language.implicitConversions
34-
35-
/**
36-
* Implicitly convert a [[scala.xml.Elem]] into a
37-
* [[scala.sys.process.ProcessBuilder]]. This is done by obtaining the text
38-
* elements of the element, trimming spaces, and then converting the result
39-
* from string to a process. Importantly, tags are completely ignored, so
40-
* they cannot be used to separate parameters.
41-
*/
42-
@deprecated("To create a scala.sys.process.Process from an xml.Elem, please use Process(elem.text.trim).", "2.11.0")
43-
implicit def xmlToProcess(command: scala.xml.Elem): ProcessBuilder = Process(command.text.trim)
44-
45-
@deprecated("To create a scala.sys.process.Process from an xml.Elem, please use Process(elem.text.trim).", "2.11.0")
46-
implicit def processXml(p: Process.type): { def apply(command: Elem): ProcessBuilder } = new {
47-
/**
48-
* Creates a [[scala.sys.process.ProcessBuilder]] from a Scala XML Element.
49-
* This can be used as a way to template strings.
50-
*
51-
* @example {{{
52-
* apply(<x> {dxPath.absolutePath} --dex --output={classesDexPath.absolutePath} {classesMinJarPath.absolutePath}</x>)
53-
* }}}
54-
*/
55-
def apply(command: Elem): ProcessBuilder = Process(command.text.trim)
56-
}
5731
}
5832

5933
/**

0 commit comments

Comments
 (0)