[SFC-143] Wrong run-time check for variable value Created: 11/May/16  Updated: 19/Oct/17  Resolved: 12/May/16

Status: Resolved
Project: sfc
Component/s: General
Affects Version/s: unspecified
Fix Version/s: None

Type: Bug
Reporter: Javier Arauz Assignee: Unassigned
Resolution: Done Votes: 0
Labels: None
Remaining Estimate: Not Specified
Time Spent: Not Specified
Original Estimate: Not Specified
Environment:

Operating System: All
Platform: All


External issue ID: 5871
Priority: Lowest

 Description   

In file SfcScfOfProcessor.java, starting at line 114:

if (sclsff.getAttachmentPointType() instanceof Interface) {
Interface itf = (Interface) sclsff.getAttachmentPointType();
if (itf == null) {
LOG.error("createdServiceFunctionClassifier: attachment point is null\n");
continue;
}

String itfName = itf.getInterface();
if (itf == null) {
LOG.error("createdServiceFunctionClassifier: interface is null\n");
continue;
}

The line within asterisks is clearly wrong, it should be:

if (itfName == null) {


Generated at Wed Feb 07 20:38:45 UTC 2024 using Jira 8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d.