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:
parent
f3fdcc1a06
commit
a8571f883b
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue