mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
@@ -33,18 +33,18 @@ raises OutOfRange, NullObject
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable EntityCluster;
|
||||
Create returns EntityCluster;
|
||||
---Purpose : Creates an empty, non-chained, EntityCluster
|
||||
|
||||
Create (ent : any Transient) returns mutable EntityCluster;
|
||||
Create (ent : any Transient) returns EntityCluster;
|
||||
---Purpose : Creates a non-chained EntityCluster, filled with one Entity
|
||||
|
||||
Create (ec : mutable EntityCluster) returns mutable EntityCluster;
|
||||
Create (ec : EntityCluster) returns EntityCluster;
|
||||
---Purpose : Creates an empty EntityCluster, chained with another one
|
||||
-- (that is, put BEFORE this other one in the list)
|
||||
|
||||
Create (ant : any Transient; ec : mutable EntityCluster)
|
||||
returns mutable EntityCluster;
|
||||
Create (ant : any Transient; ec : EntityCluster)
|
||||
returns EntityCluster;
|
||||
---Purpose : Creates an EntityCluster, filled with a first Entity, and
|
||||
-- chained to another EntityCluster (BEFORE it, as above)
|
||||
|
||||
@@ -102,7 +102,7 @@ is
|
||||
HasNext (me) returns Boolean is static private;
|
||||
---Purpose : Returns True if a Cluster has a Next
|
||||
|
||||
Next (me) returns mutable EntityCluster is static private;
|
||||
Next (me) returns EntityCluster is static private;
|
||||
---Purpose : Returns Next Cluster in the chain
|
||||
|
||||
fields
|
||||
|
Reference in New Issue
Block a user