'substring' call should be replaced with 'dropLast' call

Last modified: 03 December 2024

Reports calls like s.substring(0, s.length - x) that can be replaced with s.dropLast(x).

Using corresponding functions makes your code simpler.

The quick-fix replaces the substring call with dropLast.

Example:

After the quick-fix is applied: