You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/alarm/logging-ui/src/main/java/org/phoebus/applications/alarm/logging/ui/AlarmLogTableItemAdapterFactory.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
importjava.util.Optional;
10
10
11
11
/**
12
-
* A factory which adapts {@link AlarmLogTableType}s to {@link TimeStampedProcessVariable} and {@link ProcessVariable}s
12
+
* A factory which adapts {@link AlarmLogTableItem}s to {@link TimeStampedProcessVariable} and {@link ProcessVariable}s
13
13
*
14
14
* @author Kunal Shroff
15
15
*/
@@ -21,7 +21,7 @@ public class AlarmLogTableTypeAdapterFactory implements AdapterFactory {
21
21
@Override
22
22
publicClassgetAdaptableObject()
23
23
{
24
-
returnAlarmLogTableType.class;
24
+
returnAlarmLogTableItem.class;
25
25
}
26
26
27
27
@Override
@@ -33,17 +33,17 @@ public List<? extends Class> getAdapterList()
33
33
@Override
34
34
public <T> Optional<T> adapt(ObjectadaptableObject, Class<T> adapterType)
0 commit comments