Revert "Cache the project and context names"

This reverts commit 610152b8dd.
This commit is contained in:
Matt Rogers 2013-04-30 23:01:46 -05:00
parent c1597a7751
commit 49886b1bd3

View file

@ -36,7 +36,7 @@ module Todos
end
def project_name
@project_name ||= @params['project_name'].strip if @params['project_name']
@params['project_name'].strip unless @params['project_name'].nil?
end
def project_id
@ -44,7 +44,7 @@ module Todos
end
def context_name
@context_name ||= @params['context_name'].strip if @params['context_name']
@params['context_name'].strip unless @params['context_name'].nil?
end
def context_id