Skip to content

Commit 6c245ed

Browse files
committed
Checkstyle
1 parent 0faf35e commit 6c245ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/net/sourceforge/pmd/util/fxdesigner/SourceEditorController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public class SourceEditorController extends AbstractController {
121121
@FXML
122122
private NodeEditionCodeArea nodeEditionCodeArea;
123123
@FXML
124-
private Parent codeAreaContainer;
124+
private Parent codeAreaParent;
125125
@FXML
126126
private NodeParentageCrumbBar focusNodeParentageCrumbBar;
127127

@@ -288,12 +288,12 @@ private void toggleTestEditMode(boolean isTestCaseMode) {
288288
AnchorPane otherPane = emptyPane();
289289
testCaseToolsTitledPane.setContent(otherPane);
290290

291-
otherPane.getChildren().addAll(codeAreaContainer);
291+
otherPane.getChildren().addAll(codeAreaParent);
292292
pane.getChildren().addAll(testCaseToolsTitledPane);
293293
} else {
294294
AnchorPane otherPane = emptyPane();
295295
editorTitledPane.setContent(otherPane);
296-
otherPane.getChildren().addAll(codeAreaContainer);
296+
otherPane.getChildren().addAll(codeAreaParent);
297297
}
298298
}
299299

src/main/resources/net/sourceforge/pmd/util/fxdesigner/fxml/editor.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<Insets/>
7474
</padding>
7575
<VirtualizedScrollPane
76-
fx:id="codeAreaContainer"
76+
fx:id="codeAreaParent"
7777
AnchorPane.bottomAnchor="0.0"
7878
AnchorPane.leftAnchor="0.0"
7979
AnchorPane.rightAnchor="0.0"

0 commit comments

Comments
 (0)