Skip to content

Commit d4923f0

Browse files
committed
fix: only call %Extends if class defined
1 parent 017a220 commit d4923f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cls/SourceControl/Git/Util/ProductionConflictResolver.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Method ConsumeStream() [ Private ]
6565
$$$ThrowStatus($$$ERROR($$$GeneralError,"File with conflict is not a class."))
6666
}
6767
Set ..productionClassname = $Piece(internalName,".",1,*-1)
68-
If '$$$comClassDefined(..productionClassname) && '$ClassMethod(..productionClassname,"%Extends","Ens.Production") {
68+
If '($$$comClassDefined(..productionClassname) && $ClassMethod(..productionClassname,"%Extends","Ens.Production")) {
6969
$$$ThrowStatus($$$ERROR($$$GeneralError,"File with conflict is not an interoperability production."))
7070
}
7171
}

0 commit comments

Comments
 (0)