001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.corrector; 003 004import java.util.List; 005 006public class TagCorrectionTable extends 007 CorrectionTable<TagCorrectionTableModel> { 008 009 public TagCorrectionTable(List<TagCorrection> tagCorrections) { 010 super(new TagCorrectionTableModel(tagCorrections)); 011 } 012 013}