MCWriteOnlyRepository.st
author Patrik Svestka <patrik.svestka@gmail.com>
Wed, 14 Nov 2018 12:57:13 +0100
branchjv
changeset 1095 87f223484bc3
parent 901 6a1a6e48c0b8
permissions -rw-r--r--
Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present - All source *.st files are now Unicode UTF8 without BOM Files are in two groups (fileOut works this way in Smalltalk/X): - containing a unicode character have "{ Encoding: utf8 }" at the header - ASCII only are without the header

"{ 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 $'
! !