diff --git a/manual/Tasks/conditions.html b/manual/Tasks/conditions.html
index 895da5426..b1c1c3148 100644
--- a/manual/Tasks/conditions.html
+++ b/manual/Tasks/conditions.html
@@ -538,7 +538,7 @@ an explanation of scripts and dependencies.
encoding |
- The encoding of the script source. since Ant 1.10.1. |
+ The encoding of the script source. since Ant 1.10.2. |
No - defaults to default JVM encoding |
diff --git a/manual/Tasks/script.html b/manual/Tasks/script.html
index 7a56eec89..d11112417 100644
--- a/manual/Tasks/script.html
+++ b/manual/Tasks/script.html
@@ -104,7 +104,7 @@ different location values.
encoding |
- The encoding of the script as a file. since Ant 1.10.1. |
+ The encoding of the script as a file. since Ant 1.10.2. |
No - defaults to default JVM encoding |
diff --git a/manual/Tasks/scriptdef.html b/manual/Tasks/scriptdef.html
index de601a583..f593e6163 100644
--- a/manual/Tasks/scriptdef.html
+++ b/manual/Tasks/scriptdef.html
@@ -117,7 +117,7 @@ more information on writing scripts, please refer to the
encoding |
- The encoding of the script as a file. since Ant 1.10.1. |
+ The encoding of the script as a file. since Ant 1.10.2. |
No - defaults to default JVM encoding |
@@ -126,7 +126,7 @@ more information on writing scripts, please refer to the
evaluation for faster multiple executions, on the condition that the manager is "javax" and the
target engine implements javax.script.Compilable
.
Note that the bsf
manager may automatically compiles the script.
- since Ant 1.10.1.
+ since Ant 1.10.2.
No - defaults to false |
diff --git a/manual/Types/filterchain.html b/manual/Types/filterchain.html
index 14968160d..4c5f94eda 100644
--- a/manual/Types/filterchain.html
+++ b/manual/Types/filterchain.html
@@ -1567,7 +1567,7 @@ Must be a supported Apache BSF or JSR 223 language
encoding |
- The encoding of the script as a file. since Ant 1.10.1. |
+ The encoding of the script as a file. since Ant 1.10.2. |
No - defaults to default JVM encoding |
diff --git a/manual/Types/mapper.html b/manual/Types/mapper.html
index f6bc76dd2..1da85dca6 100644
--- a/manual/Types/mapper.html
+++ b/manual/Types/mapper.html
@@ -807,7 +807,7 @@ an explanation of scripts and dependencies.
encoding |
- The encoding of the script as a file. since Ant 1.10.1. |
+ The encoding of the script as a file. since Ant 1.10.2. |
No - defaults to default JVM encoding |
diff --git a/manual/Types/selectors.html b/manual/Types/selectors.html
index 6a080cbc3..db2ec4881 100644
--- a/manual/Types/selectors.html
+++ b/manual/Types/selectors.html
@@ -1109,7 +1109,7 @@
encoding |
- The encoding of the script as a file. since Ant 1.10.1. |
+ The encoding of the script as a file. since Ant 1.10.2. |
No - defaults to default JVM encoding |
diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/script/ScriptDef.java b/src/main/org/apache/tools/ant/taskdefs/optional/script/ScriptDef.java
index 7a410e0ab..7e62549ee 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/script/ScriptDef.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/script/ScriptDef.java
@@ -375,7 +375,7 @@ public class ScriptDef extends DefBase {
* Defines the compilation feature ; optional.
*
* @param compiled enables the script compilation if available.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
*/
public void setCompiled(boolean compiled) {
helper.setCompiled(compiled);
@@ -394,7 +394,7 @@ public class ScriptDef extends DefBase {
* Sets the encoding of the script from an external file ; optional.
*
* @param encoding the encoding of the file containing the script source.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
*/
public void setEncoding(String encoding) {
helper.setEncoding(encoding);
diff --git a/src/main/org/apache/tools/ant/util/ScriptRunnerBase.java b/src/main/org/apache/tools/ant/util/ScriptRunnerBase.java
index c73899967..f78ee2303 100644
--- a/src/main/org/apache/tools/ant/util/ScriptRunnerBase.java
+++ b/src/main/org/apache/tools/ant/util/ScriptRunnerBase.java
@@ -196,7 +196,7 @@ public abstract class ScriptRunnerBase {
/**
* Whether to use script compilation if available.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
* @param compiled if true, compile the script if possible.
*/
public final void setCompiled(boolean compiled) {
@@ -205,7 +205,7 @@ public abstract class ScriptRunnerBase {
/**
* Get the compiled attribute.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
* @return the attribute.
*/
public final boolean getCompiled() {
@@ -214,7 +214,7 @@ public abstract class ScriptRunnerBase {
/**
* Set encoding of the script from an external file; optional.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
* @param encoding encoding of the external file containing the script source.
*/
public void setEncoding(String encoding) {
diff --git a/src/main/org/apache/tools/ant/util/ScriptRunnerHelper.java b/src/main/org/apache/tools/ant/util/ScriptRunnerHelper.java
index eda042114..fc1be2a1a 100644
--- a/src/main/org/apache/tools/ant/util/ScriptRunnerHelper.java
+++ b/src/main/org/apache/tools/ant/util/ScriptRunnerHelper.java
@@ -118,7 +118,7 @@ public class ScriptRunnerHelper {
/**
* Get the external script file ; optional.
* @return the file containing the script source.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
*/
public File getSrc() {
return srcFile;
@@ -128,7 +128,7 @@ public class ScriptRunnerHelper {
* Set the encoding of the script from an external file ; optional.
*
* @param encoding the encoding of the file containing the script source.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
*/
public void setEncoding(String encoding) {
this.encoding = encoding;
@@ -137,7 +137,7 @@ public class ScriptRunnerHelper {
/**
* Get the external file encoding.
* @return the encoding of the file containing the script source.
- * @since Ant 1.10.1
+ * @since Ant 1.10.2
*/
public String getEncoding() {
return encoding;