# File lib/tapkit/access/snapshot.rb, line 99
                def decriment( gid )
                        unless @count[gid] then
                                raise RuntimeError, "The snapshot is already released."
                        end
                        @count[gid] -= 1

                        if @count[gid] == 0 then
                                forget_snapshot gid
                        end
                end