MCWriteOnlyRepository.st
author Claus Gittinger <cg@exept.de>
Mon, 14 May 2018 02:21:18 +0200
changeset 1048 582b3a028cbc
parent 901 6a1a6e48c0b8
permissions -rw-r--r--
#FEATURE by cg class: MCMethodDefinition changed: #postloadOver:

"{ Package: 'stx:goodies/monticello' }"

MCRepository subclass:#MCWriteOnlyRepository
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Repositories'
!


!MCWriteOnlyRepository methodsFor:'as yet unclassified'!

versionWithInfo: aVersionInfo ifAbsent: aBlock
	^ aBlock value
! !

!MCWriteOnlyRepository methodsFor:'queries'!

includesVersionNamed: aString
	^ false
! !

!MCWriteOnlyRepository class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriteOnlyRepository.st,v 1.5 2014-02-12 14:53:32 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriteOnlyRepository.st,v 1.5 2014-02-12 14:53:32 cg Exp $'
!

version_SVN
    ^ '$Id: MCWriteOnlyRepository.st,v 1.5 2014-02-12 14:53:32 cg Exp $'
! !