File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
app/alarm/ui/src/main/java/org/phoebus/applications/alarm/ui/table Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -114,14 +114,14 @@ public String toString()
114114 {
115115 final StringBuilder buf = new StringBuilder ();
116116
117- buf .append ("PV: " ).append (pv .get ()).append ("\n " );
118- buf .append ("Description: " ).append (description .get ()).append ("\n " );
119- buf .append ("Alarm Time: " ).append (time .get ()).append ("\n " );
117+ buf .append ("PV: " ).append (pv .get ()).append (" \n " );
118+ buf .append ("Description: " ).append (description .get ()).append (" \n " );
119+ buf .append ("Alarm Time: " ).append (time .get ()).append (" \n " );
120120 buf .append ("Alarm Severity: " ).append (severity .get ());
121121 buf .append (", Status: " ).append (status .get ());
122- buf .append (", Value: " ).append (value .get ()).append ("\n " );
122+ buf .append (", Value: " ).append (value .get ()).append (" \n " );
123123 buf .append ("Current PV Severity: " ).append (pv_severity .get ());
124- buf .append (", Status: " ).append (pv_status .get ()).append ("\n " );
124+ buf .append (", Status: " ).append (pv_status .get ()).append (" \n " );
125125
126126 return buf .toString ();
127127 }
Original file line number Diff line number Diff line change @@ -597,7 +597,7 @@ private String list_alarms()
597597
598598 buf .append ("Acknowledged Alarms\n " );
599599 buf .append ("===================\n " );
600- for (AlarmInfoRow row : active_rows )
600+ for (AlarmInfoRow row : acknowledged_rows )
601601 buf .append (row ).append ("\n " );
602602
603603 return buf .toString ();
You can’t perform that action at this time.
0 commit comments