source: josm/trunk/src/org/openstreetmap/josm/corrector/TagCorrectionTable.java@ 8443

Last change on this file since 8443 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 344 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.corrector;
3
4import java.util.List;
5
6public class TagCorrectionTable extends
7 CorrectionTable<TagCorrectionTableModel> {
8
9 public TagCorrectionTable(List<TagCorrection> tagCorrections) {
10 super(new TagCorrectionTableModel(tagCorrections));
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.