
sbt.inc.ZincPrivateAnalysis.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zinc-sbt-inc Show documentation
Show all versions of zinc-sbt-inc Show documentation
Temporary shims to expose accidentally-private SBT apis.
The newest version!
// Copyright 2015 Pants project contributors (see CONTRIBUTORS.md).
// Licensed under the Apache License, Version 2.0 (see LICENSE).
package sbt.inc
/**
* TODO: A temporary class in the `sbt.inc` package to deal with the fact that
* `Analysis.empty` is accidentally package-protected in sbt 0.13.9. Remove after:
* https://github.com/sbt/sbt/issues/2159
*/
@deprecated("Temporary class used to work around an accidentally package-protected method.", "0.13.9")
object ZincPrivateAnalysis {
def empty(nameHashing: Boolean): Analysis = Analysis.empty(nameHashing)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy