Opened 6 years ago
Closed 6 years ago
#69 closed defect (fixed)
Wrong warnings raised as checkNoUnusedFormalParameters and checkNoUnusedLocalDefinitions
Reported by: | phdmakk | Owned by: | phdmakk |
---|---|---|---|
Priority: | major | Milestone: | v2.0.0 Series |
Component: | T3Q | Version: | 2.0 |
Keywords: | Cc: |
Description
There are two different warnings raised that shouldn't appear, as the parameters are actually used within their objects.
2.1.- Case checkNoUnusedFormalParameters
..\NBIOT\Common\NBIOT_NASSteps.ttcn: 853: WARNING: Code Style: Formal parameter "p_ToBeTested" in definition for "f_Check_UE_NetworkCap_CIOT" is never used! (6.11, checkNoUnusedFormalParameters)
2.3.- Case checkNoUnusedLocalDefinitions
..\NBIOT\Common\NBIOT_NASSteps.ttcn: 857: WARNING: Code Style: Local definition for "v_UP" in definition of "f_Check_UE_NetworkCap_CIOT" is never used! (6.11, checkNoUnusedLocalDefinitions)
Change History (2)
comment:1 Changed 6 years ago by phdmakk
- Owner set to phdmakk
- Status changed from new to accepted
comment:2 Changed 6 years ago by phdmakk
- Resolution set to fixed
- Status changed from accepted to closed
Note: See
TracTickets for help on using
tickets.
Indeed, there was an issue with parsing "? length (...)". The observed problems were indirect consequences of that. The issue has been fixed.