From 57a0bc22528e7c515e208b9b68d064aad2a5e722 Mon Sep 17 00:00:00 2001 From: Gintas Grigelionis Date: Tue, 15 May 2018 11:28:22 +0200 Subject: [PATCH] Bz 53018: fix editorial mistakes --- manual/Tasks/depend.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manual/Tasks/depend.html b/manual/Tasks/depend.html index d8d4b04ba..869696b6d 100644 --- a/manual/Tasks/depend.html +++ b/manual/Tasks/depend.html @@ -56,10 +56,10 @@ relation to determine, for each class, which other classes are dependent upon it class. The class files of the invalidated classes are removed, triggering the compilation of the affected classes.

-

The depend task supports an attribute, closure which controls +

The depend task supports an attribute, closure, which controls whether depend will only consider direct class-class relationships or whether it will also consider transitive, indirect relationships. For example, say there are three classes, A, which -depends on B, which in-turn depend on C. Now say that class C is out of +depends on B, which in-turn depends on C. Now say that class C is out of date. Without closure, only class B would be removed by depend. With closure set, class A would also be removed. Normally direct relationships are sufficient—it is unusual for a class to depend on another without having a @@ -71,7 +71,7 @@ present, depend will check class dependencies against classes and j classpath. Any classes which depend on an element from this classpath and which are older than that element will be deleted. A typical example where you would use this facility would be where you are building a utility jar and want to make sure classes which are out of date with respect to this jar -are rebuilt. You should not include jars in this classpath which you do not expect +are rebuilt. In this classpath, you should not include jars that you do not expect to change, such as the JDK runtime jar or third party jars, since doing so will just slow down the dependency check. This means that if you do use a classpath for the depend task it may be different from the classpath necessary to actually compile your code.

@@ -85,15 +85,15 @@ of your project and how interrelated your classes are.

Limitations

-

There are some source dependencies which depend will not detect.

+

There are some source dependencies which depend will not detect: