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