anlingyi / xechat-idea

让你能够在IDEA里实现聊天、下棋、斗地主!
https://xeblog.cn/?tag=xechat-idea
Apache License 2.0
742 stars 149 forks source link

关于MainWindow类中无用的属性contentPanel #77

Closed smilesnake closed 2 years ago

smilesnake commented 2 years ago
public class MainWindow {
    private JPanel mainPanel;
    private JTextPane console;
    private JTextArea contentArea;
    private JPanel leftPanel;
    private JPanel rightPanel;
    private JPanel contentPanel;
    private JScrollPane consoleScroll;
    private JPanel leftTopPanel;

在这个类中,属性contentPanel在整个项目中都没用被使用。属性contentPanel在MainWindow.form中40行出现过。

<grid id="eece8" binding="contentPanel" layout-manager="GridLayoutManager" row-count="1" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">

在整个项目中,属性contentPanel只在MainWindow.form中40行出现过,而且只是用于与MainWindow 类中的属性contentPanel绑定,绑定后实际没有使用,经过测试: 1.删除MainWindow 类中的属性contentPanel. 2.删除MainWindow.form中40行binding="contentPanel" 删除后项目与原先没有区别。