Skip to content

Commit

Permalink
undeprecate generateComponentsAndDirectoryXml in WixHelper
Browse files Browse the repository at this point in the history
as per #726
  • Loading branch information
SethTisue authored and muuki88 committed Nov 12, 2016
1 parent b150ca8 commit a1aefb4
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -273,7 +273,8 @@ object WixHelper {
* @return A tuple where the first item is all the Component Ids created,
* and the second is the Directory/File/Component XML.
*/
@deprecated("Use higher level abstraction", "6/28/13")
// TODO @deprecated("Use higher level abstraction", "6/28/13")
// reference: https://github.com/sbt/sbt-native-packager/issues/726
def generateComponentsAndDirectoryXml(dir: File, id_prefix: String = ""): (Seq[String], scala.xml.Node) = {
def makeId(f: File) =
cleanStringForId(IO.relativize(dir, f) map (id_prefix +) getOrElse (id_prefix + f.getName))
Expand Down

0 comments on commit a1aefb4

Please sign in to comment.