| Revision 3083,
351 bytes
checked in by bastiK, 2 years ago
(diff) |
|
added svn:eol-style=native to source files
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file. |
|---|
| 2 | package org.openstreetmap.josm.corrector; |
|---|
| 3 | |
|---|
| 4 | import java.util.List; |
|---|
| 5 | |
|---|
| 6 | public class RoleCorrectionTable extends |
|---|
| 7 | CorrectionTable<RoleCorrectionTableModel> { |
|---|
| 8 | |
|---|
| 9 | public RoleCorrectionTable(List<RoleCorrection> roleCorrections) { |
|---|
| 10 | super(new RoleCorrectionTableModel(roleCorrections)); |
|---|
| 11 | } |
|---|
| 12 | |
|---|
| 13 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.