protect da hooks!

git-svn-id: file:///home/svn/incoming/trunk@2615 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Spoon M 2005-06-09 18:23:30 +00:00
parent 46e78ef153
commit 6914600cf6
1 changed files with 8 additions and 8 deletions

View File

@ -16,14 +16,6 @@ class Xor
self.class::EncoderKlass
end
def _unencoded_transform(data)
data
end
def _encoded_transform(data)
data
end
def encode(data, badchars = '', opts = { })
self.raw = data
self.badchars = badchars
@ -41,6 +33,14 @@ class Xor
end
protected
def _unencoded_transform(data)
data
end
def _encoded_transform(data)
data
end
def _prepend()
""
end