Committed by
Gerrit Code Review
Recursive infinite loop fix of PIM Interface
Change-Id: I2ec7b3be57e040b1010a741afc3f50e626a52c30
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -117,7 +117,7 @@ public final class PIMInterfaces { | ... | @@ -117,7 +117,7 @@ public final class PIMInterfaces { |
| 117 | * @param cp The connectPoint representing the PIMInterface to be removed. | 117 | * @param cp The connectPoint representing the PIMInterface to be removed. |
| 118 | */ | 118 | */ |
| 119 | private void removeInterface(ConnectPoint cp) { | 119 | private void removeInterface(ConnectPoint cp) { |
| 120 | - removeInterface(cp); | 120 | + PIMInterfaces.this.removeInterface(cp); |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | @Override | 123 | @Override | ... | ... |
-
Please register or login to post a comment