ClassBuildWarning.st
author Jan Vrany <jan.vrany@labware.com>
Wed, 23 Jun 2021 12:50:05 +0100
branchjv
changeset 25430 acd92449dc30
parent 16426 f8a36e7fd6b1
permissions -rw-r--r--
`Process`: revert `#interruptWith:` Commit 3b02b0f1f647: Cherry-picked `Semaphore`, `EventSemaphore, `Process` and `ProcessorScheduler` changes `Process >> #interruptWith:` but this - for not yet known reason - breaks stx:libjava tests. This commit reverts the code to version before that commit, fixing tests.

"{ Package: 'stx:libbasic' }"

Warning subclass:#ClassBuildWarning
	instanceVariableNames:'className'
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Support'
!


!ClassBuildWarning methodsFor:'accessing'!

className:aSymbol
    className := aSymbol.
! !

!ClassBuildWarning class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuildWarning.st,v 1.1 2014-05-13 22:11:40 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/ClassBuildWarning.st,v 1.1 2014-05-13 22:11:40 cg Exp $'
! !