@@ -221,7 +221,7 @@ public void terminated(Service.State from) {
221221
222222 @ Override
223223 public void failed (Service .State from , Throwable failure ) {
224- // TODO(user ): Ideally we would want to force-stop transports before notifying application of
224+ // TODO(ejona ): Ideally we would want to force-stop transports before notifying application of
225225 // failure, but that would cause us to have an unrepresentative state since we would be
226226 // RUNNING but not accepting connections.
227227 notifyFailed (failure );
@@ -285,7 +285,7 @@ public void run() {
285285 /** Never returns {@code null}. */
286286 private <ReqT , RespT > ServerStreamListener startCall (ServerStream stream , String fullMethodName ,
287287 ServerMethodDefinition <ReqT , RespT > methodDef , Metadata .Headers headers ) {
288- // TODO(user ): should we update fullMethodName to have the canonical path of the method?
288+ // TODO(ejona ): should we update fullMethodName to have the canonical path of the method?
289289 final ServerCallImpl <ReqT , RespT > call = new ServerCallImpl <ReqT , RespT >(stream , methodDef );
290290 ServerCall .Listener <ReqT > listener
291291 = methodDef .getServerCallHandler ().startCall (fullMethodName , call , headers );
@@ -344,7 +344,7 @@ private void setListener(ServerStreamListener listener) {
344344 * Like {@link ServerCall#close(Status, Metadata.Trailers)}, but thread-safe for internal use.
345345 */
346346 private void internalClose (Status status , Metadata .Trailers trailers ) {
347- // TODO(user ): this is not thread-safe :)
347+ // TODO(ejona ): this is not thread-safe :)
348348 stream .close (status , trailers );
349349 }
350350
0 commit comments