diff -r a671f0d63562 -r 38afecddfbed app/soc/views/helper/access.py --- a/app/soc/views/helper/access.py Thu Feb 05 23:41:02 2009 +0000 +++ b/app/soc/views/helper/access.py Thu Feb 05 23:43:52 2009 +0000 @@ -877,25 +877,6 @@ return - def checkHasPickGetArgs(self, django_args): - """Raises an alternate HTTP response if the request misses get args. - - Args: - django_args: a dictionary with django's arguments - - Raises: - AccessViolationResponse: - * if continue is not in request.GET - * if field is not in request.GET - """ - - get_args = django_args.get('GET', {}) - - if 'continue' in get_args and 'field' in get_args: - return - - raise out_of_band.Error(message_fmt=DEF_NEED_PICK_ARGS_MSG) - @denySidebar @allowDeveloper def checkIsDocumentReadable(self, django_args):