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