Skip to content

Commit cb74a81

Browse files
author
jan
committed
do not put [config].TEAM.IS SHARED in the shared file
In the team file the [config].TEAM.IS SHARED value is always true
1 parent fae4c26 commit cb74a81

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

io.sloeber.autoBuild/src/io/sloeber/autoBuild/integration/AutoBuildConfigurationDescription.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,6 +1236,7 @@ public Set<String> getTeamExclusionKeys() {
12361236
if (!myIsTeamShared) {
12371237
ret.add(getName());
12381238
} else {
1239+
ret.add(getName() + DOT + KEY_TEAM + DOT + KEY_IS_SHARED);
12391240
if (myAutoBuildCfgExtDes != null) {
12401241
ret.addAll(myAutoBuildCfgExtDes.getTeamDefaultExclusionKeys(getName() + DOT + KEY_EXTENSION));
12411242
}
@@ -1254,7 +1255,7 @@ public boolean equals(IAutoBuildConfigurationDescription other) {
12541255
&& myBuildBuildData.equals(localOther.myBuildBuildData)
12551256
&& myName.equals(localOther.myName)
12561257
&& myDescription.equals(localOther.myDescription)
1257-
//&& myIsValid == localOther.myIsValid
1258+
// && myIsValid == localOther.myIsValid
12581259
&& myIsTeamShared == localOther.myIsTeamShared
12591260
&& myGenerateMakeFilesAUtomatically == localOther.myGenerateMakeFilesAUtomatically
12601261
&& myStopOnFirstBuildError == localOther.myStopOnFirstBuildError
@@ -1279,7 +1280,7 @@ public boolean equals(IAutoBuildConfigurationDescription other) {
12791280
&& myCustomToolCommands.equals(localOther.myCustomToolCommands)
12801281
&& myCustomToolPattern.equals(localOther.myCustomToolPattern)
12811282
&& myProperties.equals(localOther.myProperties)) {
1282-
if(myAutoBuildCfgExtDes != null) {
1283+
if (myAutoBuildCfgExtDes != null) {
12831284
return myAutoBuildCfgExtDes.equals(localOther.myAutoBuildCfgExtDes);
12841285
}
12851286
return true;

0 commit comments

Comments
 (0)