mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-03 18:46:43 +08: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:
@@ -27,10 +27,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndMassUnit;
|
||||
Create returns SiUnitAndMassUnit;
|
||||
---Purpose: Returns a SiUnitAndMassUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -39,9 +39,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetMassUnit(me: mutable; aMassUnit: mutable MassUnit);
|
||||
SetMassUnit(me: mutable; aMassUnit: MassUnit);
|
||||
|
||||
MassUnit (me) returns mutable MassUnit;
|
||||
MassUnit (me) returns MassUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
||||
Reference in New Issue
Block a user