end method
Marks the end of this step.
After calling this, no further tags can be added, and the step is considered complete.
Example:
final step = startup.start('context.load');
step.tag('source', 'classpath:pods.xml');
step.end(); // marks the step complete
Implementation
@override
void end() {
// No-op
}