Aitozi commented on a change in pull request #8236: 
[FLINK-12289][flink-runtime]Fix bugs and typos in Memory manager
URL: https://github.com/apache/flink/pull/8236#discussion_r277733243
 
 

 ##########
 File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/memory/MemoryManager.java
 ##########
 @@ -387,11 +387,11 @@ public void release(MemorySegment segment) {
         *
         * @param segments The segments to be released.
         * @throws NullPointerException Thrown, if the given collection is null.
-        * @throws IllegalArgumentException Thrown, id the segments are of an 
incompatible type.
+        * @throws IllegalArgumentException Thrown, if the segments are of an 
incompatible type.
         */
        public void release(Collection<MemorySegment> segments) {
                if (segments == null) {
-                       return;
+                       throw new NullPointerException();
 
 Review comment:
   If we  get a `null` to release, why can't we just skip it? I think it's a 
defensive code not a bug. Or can you post some bad situation about this?  

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to