Skip to content

Commit

Permalink
Deprecate the SetMultimap-specific and ListMultimap-specific Subjects…
Browse files Browse the repository at this point in the history
…, which add little to the general Multimap subjects.

#555

Also, start working toward hiding the Sorted* types externally.

#556

RELNOTES=Deprecated the `SetMultimap`-specific and `ListMultimap`-specific `Subjects`, which add little to the general `Multimap` subjects.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=248124985
  • Loading branch information
cpovirk committed May 17, 2019
1 parent 6e45b27 commit 2103fee
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
* com.google.common.collect.ListMultimap} subjects.
*
* @author Daniel Ploch
* @deprecated Use plain {@link MultimapSubject}.
*/
@Deprecated
public final class ListMultimapSubject extends MultimapSubject {
ListMultimapSubject(
FailureMetadata metadata,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
* com.google.common.collect.SetMultimap} subjects.
*
* @author Daniel Ploch
* @deprecated Use plain {@link MultimapSubject}.
*/
@Deprecated
public final class SetMultimapSubject extends MultimapSubject {
SetMultimapSubject(
FailureMetadata metadata,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
/**
* Type-specific extension of {@link MultimapWithProtoValuesSubject}, used to detect bad usages of
* {@link #isEqualTo}.
*
* @deprecated Use plain {@link MultimapWithProtoValuesSubject}.
*/
@Deprecated
public class ListMultimapWithProtoValuesSubject<
S extends ListMultimapWithProtoValuesSubject<S, K, M, C>,
K,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
/**
* Type-specific extension of {@link MultimapWithProtoValuesSubject}, used to detect bad usages of
* {@link #isEqualTo}.
*
* @deprecated Use plain {@link MultimapWithProtoValuesSubject}.
*/
@Deprecated
public class SetMultimapWithProtoValuesSubject<
S extends SetMultimapWithProtoValuesSubject<S, K, M, C>,
K,
Expand Down

0 comments on commit 2103fee

Please sign in to comment.