File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
io.sloeber.autoBuild/src/io/sloeber/autoBuild/integration Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1236,6 +1236,7 @@ public Set<String> getTeamExclusionKeys() {
1236
1236
if (!myIsTeamShared ) {
1237
1237
ret .add (getName ());
1238
1238
} else {
1239
+ ret .add (getName () + DOT + KEY_TEAM + DOT + KEY_IS_SHARED );
1239
1240
if (myAutoBuildCfgExtDes != null ) {
1240
1241
ret .addAll (myAutoBuildCfgExtDes .getTeamDefaultExclusionKeys (getName () + DOT + KEY_EXTENSION ));
1241
1242
}
@@ -1254,7 +1255,7 @@ public boolean equals(IAutoBuildConfigurationDescription other) {
1254
1255
&& myBuildBuildData .equals (localOther .myBuildBuildData )
1255
1256
&& myName .equals (localOther .myName )
1256
1257
&& myDescription .equals (localOther .myDescription )
1257
- //&& myIsValid == localOther.myIsValid
1258
+ // && myIsValid == localOther.myIsValid
1258
1259
&& myIsTeamShared == localOther .myIsTeamShared
1259
1260
&& myGenerateMakeFilesAUtomatically == localOther .myGenerateMakeFilesAUtomatically
1260
1261
&& myStopOnFirstBuildError == localOther .myStopOnFirstBuildError
@@ -1279,7 +1280,7 @@ public boolean equals(IAutoBuildConfigurationDescription other) {
1279
1280
&& myCustomToolCommands .equals (localOther .myCustomToolCommands )
1280
1281
&& myCustomToolPattern .equals (localOther .myCustomToolPattern )
1281
1282
&& myProperties .equals (localOther .myProperties )) {
1282
- if (myAutoBuildCfgExtDes != null ) {
1283
+ if (myAutoBuildCfgExtDes != null ) {
1283
1284
return myAutoBuildCfgExtDes .equals (localOther .myAutoBuildCfgExtDes );
1284
1285
}
1285
1286
return true ;
You can’t perform that action at this time.
0 commit comments