TO0301 - npruehs/tome-editor GitHub Wiki

"The field ... is defined but never used."

Summary

  • Name: FieldIsNeverUsed
  • Code: TO301
  • Category: Redundant Model
  • Severity: Warning
  • Since: 0.9

Each record may or may not be assigned one or more fields. Fields that aren't assigned to any record will never have any effect and will never be exported.

Example

The following steps generate this type of error:

  1. Add a field.
  2. Add the field to one or more records.
  3. Remove the field from all records again.

How To Fix

Either

  • add the field to any record, or
  • remove the field.