alts: Migrate java proto map getter from get<field> to get<field>Map

This is part of a proto-wide cleanup of its map APIs.

cl/344096880
This commit is contained in:
Eric Anderson 2020-11-25 13:27:31 -08:00 committed by Eric Anderson
parent fd59f1de0c
commit f0223eb8e3
1 changed files with 1 additions and 1 deletions

View File

@ -103,6 +103,6 @@ public final class AltsAuthContext {
* @return the context's peer attributes.
*/
public Map<String, String> getPeerAttributes() {
return context.getPeerAttributes();
return context.getPeerAttributesMap();
}
}