Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ public BeamStatusPanel(Composite parent, int style) {
newsLabel.setText("News");
newsLabel.setFont(titleFont);

McrNewsPanel newsPanel = new McrNewsPanel(content, SWT.NONE);
new McrNewsPanel(content, SWT.NONE);

Label statsLabel = new Label(content, SWT.NONE);
statsLabel.setText("Beam Stats");
statsLabel.setText("Beam statistics");
statsLabel.setFont(titleFont);

StatsPanel statsPanel = new StatsPanel(content, SWT.V_SCROLL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
import org.eclipse.swt.widgets.ExpandItem;

/**
* The parent composite for the beam stats widgets.
*
* The parent composite for the beam statistics widgets.
*/
@SuppressWarnings("checkstyle:magicnumber")
public class StatsPanel extends Composite {
Expand Down