CPD Results

The following document contains the results of PMD's CPD 4.2.2.

Duplications

File Line
mk/fsgrep/gui/App.java 648
mk/fsgrep/gui/App.java 691
        {
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.anchor = GridBagConstraints.NORTH;
            gbc.ipadx = 4;
            gbc.ipady = 4;
            gbc.insets = new Insets(2, 4, 2, 4);
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.gridx = 0;
            gbc.gridy = 0;
            gbc.weightx = 0;
            gbc.weighty = 1;

            JPanel panel = new JPanel(new GridBagLayout());

            gbc.weightx = 0;
            panel.add(new JLabel("Pattern:"), gbc);

            gbc.gridx = 1;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            gbc.weightx = 1;
            panel.add(makePatternField2(), gbc);