Project

General

Profile

« Previous | Next » 

Revision aafc3f59

Added by Andreas Müller over 1 year ago

cleanup

View differences:

src/main/java/eu/etaxonomy/cdm/CdmVaadinWebAppInitializer.java
27 27
 *
28 28
 * @author a.kohlbecker
29 29
 * @since Mar 18, 2019
30
 *
31 30
 */
32 31
public class CdmVaadinWebAppInitializer implements WebApplicationInitializer {
33 32

  
......
62 61
                );
63 62
        dispatcher.setLoadOnStartup(1);
64 63
        dispatcher.addMapping("/");
65

  
66

  
67 64
    }
68
}
65
}
src/test/java/eu/etaxonomy/cdm/vaadin/jscomponent/D3CTree.java
34 34

  
35 35
    public D3CTree() {
36 36
        addFunction("select", new JavaScriptFunction() {
37

  
37
            private static final long serialVersionUID = 3021677255132798998L;
38 38
            @Override
39 39
			public void call(JsonArray arguments) {
40 40
				Notification.show("JS Rpc call : click on " + arguments.getString(0));
41
				
42 41
			}
43 42
        });
44 43

  
......
79 78
            // TODO Auto-generated catch block
80 79
            e.printStackTrace();
81 80
        }
82

  
83 81
    }
84 82

  
85 83
    public void setConceptRelationshipTree(String conceptRelationshipTree) {
86
        getState().setConceptRelationshipTree(conceptRelationshipTree);;
84
        getState().setConceptRelationshipTree(conceptRelationshipTree);
87 85
    }
88 86

  
89 87
    @Override
90 88
    public D3CTreeState getState() {
91 89
        return (D3CTreeState) super.getState();
92 90
    }
93

  
94
}
91
}
src/test/java/eu/etaxonomy/cdm/vaadin/presenter/ConceptRelationshipPresenterTest.java
34 34
/**
35 35
 * @author cmathew
36 36
 * @since 9 Apr 2015
37
 *
38 37
 */
39 38
@DataSets({
40 39
    @DataSet(loadStrategy=CleanSweepInsertLoadStrategy.class),
......
60 59
        app = CdmSpringContextHelper.getApplicationConfiguration();
61 60
    }
62 61

  
63

  
64 62
    @Test
65 63
    @Ignore
66 64
    public void testRefreshRelationshipView() throws JSONException {
......
90 88
        // app.commitTransaction(tx);
91 89

  
92 90
    }
93

  
94

  
95
}
91
}

Also available in: Unified diff