-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ignore package private public interface changes
- Loading branch information
1 parent
64a3fc8
commit da80c0b
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html --> | ||
<differences> | ||
<difference> | ||
<differenceType>7005</differenceType> | ||
<!--Ignore changes in this class because it's package private--> | ||
<className>com/google/cloud/pubsub/v1/MessageDispatcher$Builder</className> | ||
<method>*(org.threeten.bp.Duration)</method> | ||
<to>*(java.time.Duration)</to> | ||
</difference> | ||
<difference> | ||
<differenceType>7005</differenceType> | ||
<!--Ignore changes in this class because it's package private--> | ||
<className>com/google/cloud/pubsub/v1/StreamingSubscriberConnection$Builder</className> | ||
<method>*(org.threeten.bp.Duration)</method> | ||
<to>*(java.time.Duration)</to> | ||
</difference> | ||
</differences> |