File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
src/instantiator/characteristic Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -27,23 +27,17 @@ export interface MultiLanguageText {
27
27
export class EnumerationCharacteristicInstantiator extends CharacteristicInstantiator {
28
28
constructor ( metaModelElementInstantiator : MetaModelElementInstantiator , nextProcessor : CharacteristicInstantiator ) {
29
29
super ( metaModelElementInstantiator , nextProcessor ) ;
30
- console . log ( '+++ in EnumerationCharacteristicInstantiator constructor +++' ) ;
31
30
}
32
31
33
32
protected processElement ( quads : Array < Quad > ) : Characteristic {
34
33
const samm = this . metaModelElementInstantiator . samm ;
35
34
const sammC = this . metaModelElementInstantiator . sammC ;
36
35
const enumeration = this . creatEnumerationObject ( ) ;
37
- console . log ( '+++ in EnumerationCharacteristicInstantiator processElement +++' ) ;
38
36
const dataType = quads . find ( quad => this . samm . isDataTypeProperty ( quad . predicate . value ) ) ;
39
37
40
-
41
38
quads . forEach ( quad => {
42
- console . log ( '+++ quad.predicate.value+++' , quad . predicate . value ) ;
43
39
if ( samm . isValueProperty ( quad . predicate . value ) || sammC . isValuesProperty ( quad . predicate . value ) ) {
44
- console . log ( '+++ in EnumerationCharacteristicInstantiator quads.forEach in if +++' ) ;
45
40
if ( Util . isBlankNode ( quad . object ) ) {
46
- console . log ( '+++ in EnumerationCharacteristicInstantiator in if isBlankNode +++' ) ;
47
41
enumeration . values = this . getEnumerationValues ( quad , dataType ?. object . value ) ;
48
42
}
49
43
}
You can’t perform that action at this time.
0 commit comments