The "none" decompression algorithm.

Methods
Public Instance methods
decompress( text )

Simply returns the argument, unaltered.

    # File lib/net/ssh/transport/compress/none-decompressor.rb, line 29
29:           def decompress( text )
30:             text
31:           end

[Validate]