@@ -137,7 +137,6 @@ public abstract class DefaultModule implements Module, ApplicationContextAware
137137 private String _vcsRevision = null ;
138138 private String _vcsUrl = null ;
139139 private String _vcsBranch = "Unknown" ;
140- private String _vcsTag = "Unknown" ;
141140 private String _buildUser = null ;
142141 private String _buildTime = null ;
143142 private String _buildOS = null ;
@@ -818,17 +817,10 @@ public void setVcsBranch(String vcsBranch)
818817 _vcsBranch = vcsBranch ;
819818 }
820819
821- @ Nullable
822- @ Override
823- public String getVcsTag ()
824- {
825- return _vcsTag ;
826- }
827-
828820 @ SuppressWarnings ({"UnusedDeclaration" })
829821 public void setVcsTag (String vcsTag )
830822 {
831- _vcsTag = vcsTag ;
823+ // Ignored - present in module.xml but not used
832824 }
833825
834826 public final String getBuildUser ()
@@ -974,7 +966,6 @@ public final Map<String, String> getProperties()
974966 props .put ("VCS URL" , getVcsUrl ());
975967 props .put ("VCS Revision" , getVcsRevision ());
976968 props .put ("VCS Branch" , getVcsBranch ());
977- props .put ("VCS Tag" , getVcsTag ());
978969 props .put ("Build OS" , getBuildOS ());
979970
980971 props .put ("Build Time" , getBuildTime ());
@@ -1605,7 +1596,6 @@ public void copyPropertiesFrom(DefaultModule from)
16051596 this .setUrl (from .getUrl ());
16061597 this .setVcsBranch (from .getVcsBranch ());
16071598 this .setVcsRevision (from .getVcsRevision ());
1608- this .setVcsTag (from .getVcsTag ());
16091599 this .setVcsUrl (from .getVcsUrl ());
16101600 this .setZippedPath (from .getZippedPath ());
16111601 }
0 commit comments