@@ -43,7 +43,7 @@ public bool TryGetHeaderValues(
4343
4444 public override bool Equals ( object ? obj )
4545 {
46- if ( obj is not global :: Orb . Core . HttpResponse other )
46+ if ( obj is not HttpResponse other )
4747 {
4848 return false ;
4949 }
@@ -109,7 +109,7 @@ public void Dispose()
109109 }
110110}
111111
112- public sealed class HttpResponse < T > : global :: Orb . Core . HttpResponse
112+ public sealed class HttpResponse < T > : HttpResponse
113113{
114114 readonly Func < Threading ::CancellationToken , Task < T > > _deserialize ;
115115
@@ -120,7 +120,7 @@ internal HttpResponse(Func<Threading::CancellationToken, Task<T>> deserialize)
120120
121121 [ SetsRequiredMembers ]
122122 internal HttpResponse (
123- global :: Orb . Core . HttpResponse response ,
123+ HttpResponse response ,
124124 Func < Threading ::CancellationToken , Task < T > > deserialize
125125 )
126126 : this ( deserialize )
@@ -139,7 +139,7 @@ public Task<T> Deserialize(Threading::CancellationToken cancellationToken = defa
139139 }
140140}
141141
142- public sealed class StreamingHttpResponse < T > : global :: Orb . Core . HttpResponse
142+ public sealed class StreamingHttpResponse < T > : HttpResponse
143143{
144144 readonly Func < Threading ::CancellationToken , IAsyncEnumerable < T > > _enumerate ;
145145
@@ -152,7 +152,7 @@ internal StreamingHttpResponse(
152152
153153 [ SetsRequiredMembers ]
154154 internal StreamingHttpResponse (
155- global :: Orb . Core . HttpResponse response ,
155+ HttpResponse response ,
156156 Func < Threading ::CancellationToken , IAsyncEnumerable < T > > enumerate
157157 )
158158 : this ( enumerate )
0 commit comments