Method argument ${object name} is not used.

A method argument that is not referenced anywhere can be removed.

Violating this rule will affect the maintainability of the code.The severity is minor which means that the code probably works, but should be corrected at first opportunity.

In the following example, the iata_code_ argument is not used in the code and will therefore be marked as unused.

...
PROCEDURE Drive_Me (
   iata_code_ IN     VARCHAR2 ) 
IS
   limit_ NUMBER;
BEGIN
   IF (limit_ IS NULL) THEN
      NULL;
   END IF; 
END Drive_Me;
...

This page is generated from IFS Developer Studio at 2021-08-13 08:49.