Skip to content

Commit cbdc098

Browse files
committed
CSSTUDIO-2167 Improve code style: remove the modifiers 'public' from the interface 'Decoration'.
1 parent 2a2116f commit cbdc098

File tree

1 file changed

+3
-3
lines changed
  • app/logbook/olog/ui/src/main/java/org/phoebus/logbook/olog/ui/spi

1 file changed

+3
-3
lines changed

app/logbook/olog/ui/src/main/java/org/phoebus/logbook/olog/ui/spi/Decoration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import java.util.List;
77

88
public interface Decoration {
9-
public void setLogEntries(List<LogEntry> logEntries);
9+
void setLogEntries(List<LogEntry> logEntries);
1010

11-
public void setRefreshLogEntryTableView(Runnable refreshLogEntryTableView);
11+
void setRefreshLogEntryTableView(Runnable refreshLogEntryTableView);
1212

13-
public Node createDecorationForLogEntryCell(LogEntry logEntry);
13+
Node createDecorationForLogEntryCell(LogEntry logEntry);
1414
}

0 commit comments

Comments
 (0)