class DELETE_COMMENTS_TASK
Delete comments task
note
description: "Delete comments task"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:03 GMT (Tuesday 15th November 2022)"
revision: "6"
class
DELETE_COMMENTS_TASK
inherit
ID3_TASK
DATABASE_UPDATE_TASK
create
make
feature -- Basic operations
apply
-- Delete comments except 'c0'
do
Database.for_all_songs_id3_info (any_song, agent delete_id3_comments)
Database.store_all
end
end