# File lib/fastcst/repo.rb, line 469
469:         def delete_changeset(uuid)
470:             full_path, md = find_changeset(uuid)
471:     
472:             # recursively remove the directory
473:             FileUtils.rm_rf(full_path)
474:         
475:             # force rebuilding of the cached_rev_tree the next time it's requested
476:             @cached_rev_tree = nil
477:         
478:             return full_path, md
479:         end