@@ -119,7 +119,7 @@ public ServerListener serverListener() {
119119 }
120120
121121 /** Hack to allow executors to auto-shutdown. Not for general use. */
122- // TODO(ejona ): Replace with a real API.
122+ // TODO(ejona86 ): Replace with a real API.
123123 synchronized void setTerminationRunnable (Runnable runnable ) {
124124 this .terminationRunnable = runnable ;
125125 }
@@ -168,7 +168,7 @@ public synchronized ServerImpl shutdown() {
168168 *
169169 * <p>NOT YET IMPLEMENTED. This method currently behaves identically to shutdown().
170170 */
171- // TODO(ejona ): cancel preexisting calls.
171+ // TODO(ejona86 ): cancel preexisting calls.
172172 public synchronized ServerImpl shutdownNow () {
173173 shutdown ();
174174 return this ;
@@ -320,7 +320,7 @@ public void run() {
320320 /** Never returns {@code null}. */
321321 private <ReqT , RespT > ServerStreamListener startCall (ServerStream stream , String fullMethodName ,
322322 ServerMethodDefinition <ReqT , RespT > methodDef , Metadata .Headers headers ) {
323- // TODO(ejona ): should we update fullMethodName to have the canonical path of the method?
323+ // TODO(ejona86 ): should we update fullMethodName to have the canonical path of the method?
324324 final ServerCallImpl <ReqT , RespT > call = new ServerCallImpl <ReqT , RespT >(stream , methodDef );
325325 ServerCall .Listener <ReqT > listener
326326 = methodDef .getServerCallHandler ().startCall (fullMethodName , call , headers );
@@ -382,7 +382,7 @@ private void setListener(ServerStreamListener listener) {
382382 * Like {@link ServerCall#close(Status, Metadata.Trailers)}, but thread-safe for internal use.
383383 */
384384 private void internalClose (Status status , Metadata .Trailers trailers ) {
385- // TODO(ejona ): this is not thread-safe :)
385+ // TODO(ejona86 ): this is not thread-safe :)
386386 stream .close (status , trailers );
387387 }
388388
0 commit comments