@@ -30,6 +30,9 @@ Other changes: | |||||
* javadoc task will now look for warning messages in the STDERR stream too | * javadoc task will now look for warning messages in the STDERR stream too | ||||
when "failonwarning" is set to true to account for changes in JDK 17+ | when "failonwarning" is set to true to account for changes in JDK 17+ | ||||
* The tar task now preserves symlinks of nested tarfilesets. | |||||
Github Pull Request #142 | |||||
Changes from Ant 1.10.10 TO Ant 1.10.11 | Changes from Ant 1.10.10 TO Ant 1.10.11 | ||||
======================================= | ======================================= | ||||
@@ -177,7 +177,7 @@ public class TarResource extends ArchiveResource { | |||||
/** | /** | ||||
* @return the link "name" (=path) of this entry; an empty string if this is no link | * @return the link "name" (=path) of this entry; an empty string if this is no link | ||||
* @since 1.10.10 | |||||
* @since 1.10.12 | |||||
*/ | */ | ||||
public String getLinkName() { | public String getLinkName() { | ||||
return linkName; | return linkName; | ||||
@@ -185,7 +185,7 @@ public class TarResource extends ArchiveResource { | |||||
/** | /** | ||||
* @return the link "flag" (=type) of this entry | * @return the link "flag" (=type) of this entry | ||||
* @since 1.10.10 | |||||
* @since 1.10.12 | |||||
*/ | */ | ||||
public byte getLinkFlag() { | public byte getLinkFlag() { | ||||
return linkFlag; | return linkFlag; | ||||
@@ -399,6 +399,7 @@ public class TarEntry implements TarConstants { | |||||
* Get this entry's link flag. | * Get this entry's link flag. | ||||
* | * | ||||
* @return This entry's link flag. | * @return This entry's link flag. | ||||
* @since 1.10.12 | |||||
*/ | */ | ||||
public byte getLinkFlag() { | public byte getLinkFlag() { | ||||
return linkFlag; | return linkFlag; | ||||
@@ -408,6 +409,7 @@ public class TarEntry implements TarConstants { | |||||
* Set this entry's link flag. | * Set this entry's link flag. | ||||
* | * | ||||
* @param link the link flag to use. | * @param link the link flag to use. | ||||
* @since 1.10.12 | |||||
*/ | */ | ||||
public void setLinkFlag(byte linkFlag) { | public void setLinkFlag(byte linkFlag) { | ||||
this.linkFlag = linkFlag; | this.linkFlag = linkFlag; | ||||