You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Manual#destroy method iterates over a manual's sections and destroys each of the section's editions. It does this by calling #destroy on each of the editions returned from Section#editions.
Because Section#editions simply returns the editions that were supplied when the Section was created we can't currently guarantee that we'd be destroying all editions.
The text was updated successfully, but these errors were encountered:
I'm working toward removing the Section#editions method completely and
making it private ensures that nothing other than `Section` is using it.
Note that I've had to change the `Manual#destroy` method so that it's
calling `Section#all_editions` instead of `#editions`. This fixes issue
#1116.
I'm working toward removing the Section#editions method completely and
making it private ensures that nothing other than `Section` is using it.
Note that I've had to change the `Manual#destroy` method so that it's
calling `Section#all_editions` instead of `#editions`. This fixes issue
#1116.
The
Manual#destroy
method iterates over a manual's sections and destroys each of the section's editions. It does this by calling#destroy
on each of the editions returned fromSection#editions
.Because
Section#editions
simply returns the editions that were supplied when theSection
was created we can't currently guarantee that we'd be destroying all editions.The text was updated successfully, but these errors were encountered: