Move c-like comment to javadoc in TextMapPropagator (#2930)

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
This commit is contained in:
Bogdan Drutu 2021-02-24 12:19:03 -08:00 committed by GitHub
parent 18df74eb19
commit bf5fa57df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -88,11 +88,15 @@ public interface TextMapPropagator {
* clear fields as they couldn't have been set before. If it is a mutable, retryable object,
* successive calls should clear these fields first.
*
* <p>Some use cases for this are:
*
* <ul>
* <li>Allow pre-allocation of fields, especially in systems like gRPC Metadata
* <li>Allow a single-pass over an iterator
* </ul>
*
* @return the fields that will be used by this formatter.
*/
// The use cases of this are:
// * allow pre-allocation of fields, especially in systems like gRPC Metadata
// * allow a single-pass over an iterator
Collection<String> fields();
/**