Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated testing method #777

Merged
merged 2 commits into from Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions clirr-ignored-differences.xml
Expand Up @@ -2,6 +2,11 @@
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->

<differences>
<difference>
<differenceType>7002</differenceType>
<className>com/google/api/client/testing/http/MockHttpTransport</className>
<method>com.google.api.client.testing.http.MockHttpTransport$Builder builder()</method>
</difference>
<!-- 8001 (Class removed): className -->
<difference>
<differenceType>8001</differenceType>
Expand Down
Expand Up @@ -99,19 +99,6 @@ public final MockLowLevelHttpRequest getLowLevelHttpRequest() {
return lowLevelHttpRequest;
}

/**
* Returns an instance of a new builder.
*
* <p>
*
* @deprecated (to be removed in the future) Use {@link Builder#Builder()} instead.
* @since 1.5
*/
@Deprecated
public static Builder builder() {
return new Builder();
}

/**
* {@link Beta} <br>
* Builder for {@link MockHttpTransport}.
Expand Down