(DeckEditorConfig editorConfig, String editDeckName)
| 429 | private boolean tabsInitialized = false; |
| 430 | |
| 431 | public FDeckEditor(DeckEditorConfig editorConfig, String editDeckName) { |
| 432 | this(editorConfig, editorConfig.initDeckController(editDeckName, "")); |
| 433 | } |
| 434 | public FDeckEditor(DeckEditorConfig editorConfig, DeckProxy editDeck) { |
| 435 | this(editorConfig, editorConfig.initDeckController(editDeck.getName(), editDeck.getPath())); |
| 436 | } |
nothing calls this directly
no test coverage detected