mirror of https://github.com/sbt/sbt.git
Replace `ivys` and `artifacts` in comments
The `ivys` and `artifacts` methods are not available anymore, now referring to `withPatterns`
This commit is contained in:
parent
6fc7bc6dc9
commit
d976980af2
|
|
@ -295,7 +295,7 @@ abstract class ResolverFunctions {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a file resolver with the given name. The patterns to use must be explicitly specified
|
* Constructs a file resolver with the given name. The patterns to use must be explicitly specified
|
||||||
* using the `ivys` or `artifacts` methods on the constructed resolver object.
|
* using the `withPatterns` method on the constructed resolver object.
|
||||||
*/
|
*/
|
||||||
def apply(name: String): FileRepository =
|
def apply(name: String): FileRepository =
|
||||||
FileRepository(name, defaultFileConfiguration, Patterns(false))
|
FileRepository(name, defaultFileConfiguration, Patterns(false))
|
||||||
|
|
@ -310,7 +310,7 @@ abstract class ResolverFunctions {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a URL resolver with the given name. The patterns to use must be explicitly specified
|
* Constructs a URL resolver with the given name. The patterns to use must be explicitly specified
|
||||||
* using the `ivys` or `artifacts` methods on the constructed resolver object.
|
* using the `withPatterns` method on the constructed resolver object.
|
||||||
*/
|
*/
|
||||||
def apply(name: String): URLRepository = URLRepository(name, Patterns(false))
|
def apply(name: String): URLRepository = URLRepository(name, Patterns(false))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue