source: josm/trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerTest.java@ 8540

Last change on this file since 8540 was 8514, checked in by Don-vip, 9 years ago

checkstyle: various checks

  • Property svn:eol-style set to native
File size: 482 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset;
3
4import javax.swing.JFrame;
5
6import org.junit.Ignore;
7
8@Ignore
9public class ChangesetCacheManagerTest extends JFrame {
10
11 private ChangesetCacheManager manager;
12
13 public void start() {
14 manager = new ChangesetCacheManager();
15 manager.setVisible(true);
16 }
17
18 public static void main(String[] args) {
19 new ChangesetCacheManagerTest().start();
20 }
21}
Note: See TracBrowser for help on using the repository browser.