Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Request.java @ 1015:0114d373748e
remove recycle()
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Mon, 24 Oct 2016 01:26:16 -0600 |
| parents | 6939226e0ac4 |
| children | 6be43ef1eb96 |
comparison
equal
deleted
inserted
replaced
| 1014:36fcc157bf5f | 1015:0114d373748e |
|---|---|
| 860 @Override | 860 @Override |
| 861 public boolean isUserInRole(String role) | 861 public boolean isUserInRole(String role) |
| 862 { | 862 { |
| 863 return false; | 863 return false; |
| 864 } | 864 } |
| 865 | 865 /* |
| 866 protected void recycle() | 866 protected void recycle() |
| 867 { | 867 { |
| 868 _handled = false; | 868 _handled = false; |
| 869 if (_contextHandler != null) | 869 if (_contextHandler != null) |
| 870 throw new IllegalStateException("Request in context!"); | 870 throw new IllegalStateException("Request in context!"); |
| 889 _baseParameters.clear(); | 889 _baseParameters.clear(); |
| 890 _parameters = null; | 890 _parameters = null; |
| 891 _paramsExtracted = false; | 891 _paramsExtracted = false; |
| 892 _inputState = __NONE; | 892 _inputState = __NONE; |
| 893 } | 893 } |
| 894 | 894 */ |
| 895 @Override | 895 @Override |
| 896 public void removeAttribute(String name) | 896 public void removeAttribute(String name) |
| 897 { | 897 { |
| 898 if (_attributes != null) | 898 if (_attributes != null) |
| 899 _attributes.removeAttribute(name); | 899 _attributes.removeAttribute(name); |
