HTTPCLIENT-835 : No point having protected final fields and public getters

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@755793 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-03-19 00:01:31 +00:00
parent f3fdcc1a06
commit a8571f883b
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ import org.apache.http.conn.routing.HttpRoute;
@NotThreadSafe // RequestWrapper is @NotThreadSafe
public class RoutedRequest {
protected final RequestWrapper request; // @NotThreadSafe
protected final HttpRoute route; // @Immutable
private final RequestWrapper request; // @NotThreadSafe
private final HttpRoute route; // @Immutable
/**
* Creates a new routed request.