Faculty of Information Technology
Software Engineering Group

Opened 4 years ago

Closed 4 years ago

#289 closed defect (invalid)

UninterpretedBytes should be variableByteSubclass

Reported by: nicolas.cellier.aka.nice@… Owned by:
Priority: major Milestone:
Component: default Keywords:
Cc: Also affects CVS HEAD (eXept version): no

Description

(UninterpretedBytes? new: 8) fails because class is not variable

Indeed, definition is:

ArrayedCollection? subclass:#UninterpretedBytes

instanceVariableNames:
classVariableNames:'IsBigEndian'
poolDictionaries:

category:'Collections-Abstract'

when it should be:

ArrayedCollection? variableByteSubclass:#UninterpretedBytes

instanceVariableNames:
classVariableNames:'IsBigEndian'
poolDictionaries:

category:'Collections-Abstract'

Change History (1)

comment:1 Changed 4 years ago by nicolas.cellier.aka.nice@…

Resolution: invalid
Status: newclosed

Oups, sorry, unlike VW UninterpretedBytes? is abstract...
Forget it

Note: See TracTickets for help on using tickets.