Skip to content
Snippets Groups Projects
Commit 724a4904 authored by Lars Erik Blümke's avatar Lars Erik Blümke
Browse files

Changed visibility of static constants to 'package' to make them accessible from test case

parent 40e69ece
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -31,10 +31,10 @@ import teetime.stage.basic.AbstractFilter; ...@@ -31,10 +31,10 @@ import teetime.stage.basic.AbstractFilter;
*/ */
public class ThreadsStatusDisplayFilter extends AbstractFilter<ThreadsStatusRecord> { public class ThreadsStatusDisplayFilter extends AbstractFilter<ThreadsStatusRecord> {
private static final String TOTAL_THREADS = "Total Threads"; static final String TOTAL_THREADS = "Total Threads";
private static final String THREADS = "Threads"; static final String THREADS = "Threads";
private static final String DAEMON_THREADS = "Daemon Threads"; static final String DAEMON_THREADS = "Daemon Threads";
private static final String PEAK_THREADS = "Peak Threads"; static final String PEAK_THREADS = "Peak Threads";
private final XYPlot xyplot; private final XYPlot xyplot;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment