nbauma109 commented on code in PR #177:
URL: https://github.com/apache/commons-bcel/pull/177#discussion_r1034702240


##########
src/main/java/org/apache/bcel/classfile/StackMap.java:
##########
@@ -135,7 +135,7 @@ public StackMapEntry[] getStackMap() {
     public void setStackMap(final StackMapEntry[] table) {
         this.table = table != null ? table : StackMapEntry.EMPTY_ARRAY;
         int len = 2; // Length of 'number_of_entries' field prior to the array 
of stack maps
-        for (final StackMapEntry element : this.table) {
+        for (final StackMapEntry element : table) {

Review Comment:
   Yes. I've just re-integrated the lost NPE fix.



-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to