001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.correction;
003
004import java.util.List;
005
006import org.openstreetmap.josm.data.correction.TagCorrection;
007
008/**
009 * Tag correction table.
010 * @since 729
011 */
012public class TagCorrectionTable extends CorrectionTable<TagCorrectionTableModel> {
013
014    /**
015     * Constructs a new {@code TagCorrectionTable}.
016     * @param tagCorrections tag corrections
017     */
018    public TagCorrectionTable(List<TagCorrection> tagCorrections) {
019        super(new TagCorrectionTableModel(tagCorrections));
020    }
021}