Author: xavier
Date: Thu Mar 8 04:22:47 2007
New Revision: 516019
URL: http://svn.apache.org/viewvc?view=rev&rev=516019
Log:
CacheManager can be null, document it
Modified:
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/resolve/ResolveOptions.java
Modified:
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/resolve/ResolveOptions.java
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/core/resolve/ResolveOptions.java?view=diff&rev=516019&r1=516018&r2=516019
==============================================================================
---
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/resolve/ResolveOptions.java
(original)
+++
incubator/ivy/core/trunk/src/java/org/apache/ivy/core/resolve/ResolveOptions.java
Thu Mar 8 04:22:47 2007
@@ -43,9 +43,10 @@
*/
private String revision = null;
/**
- * The cache manager to use during resolve
+ * The cache manager to use during resolve.
+ * If it is null, default cache manager will be used.
*/
- private CacheManager cache;
+ private CacheManager cache = null;
/**
* the date for which the dependencies should be resolved.
* All obtained artifacts should have a publication date which is
before