Skip to content

Commit 6671491

Browse files
committed
Minor fixes to documentation, author, dates ...
1 parent c1555fd commit 6671491

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

core/pv/src/main/java/org/phoebus/pv/sys/SysPVFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import java.util.stream.Collectors;
1515

1616
/** PV Factory for system PVs
17-
* @author Kay Kasemir
17+
* @author Kay Kasemir, Kunal Shroff
1818
*/
1919
@SuppressWarnings("nls")
2020
public class SysPVFactory implements PVFactory
@@ -31,7 +31,7 @@ public String getType()
3131
@Override
3232
public PV createPV(final String name, final String base_name) throws Exception
3333
{
34-
// Determine simulation function name and (optional) parameters
34+
// Determine system pv function name and (optional) parameters
3535
final String func, parameters;
3636
int sep = base_name.indexOf('(');
3737
if (sep < 0)

core/pv/src/main/java/org/phoebus/pv/sys/TimeOffsetPV.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*******************************************************************************
2-
* Copyright (c) 2019 Oak Ridge National Laboratory.
2+
* Copyright (c) 2022 Oak Ridge National Laboratory.
3+
* Copyright (c) 2022 Brookhaven National Laboratory.
34
* All rights reserved. This program and the accompanying materials
45
* are made available under the terms of the Eclipse Public License v1.0
56
* which accompanies this distribution, and is available at
@@ -12,14 +13,12 @@
1213
import org.phoebus.util.time.TimestampFormats;
1314

1415
import java.time.Instant;
15-
import java.time.Period;
1616
import java.time.format.DateTimeFormatter;
1717
import java.time.temporal.TemporalAmount;
1818
import java.util.List;
19-
import java.util.Locale;
2019

2120
/** System "time" PV
22-
* @author Kay Kasemir, based on similar code in diirt
21+
* @author Kunal Shroff, Kay Kasemir, based on similar code in diirt
2322
*/
2423
public class TimeOffsetPV extends SimulatedStringPV
2524
{

0 commit comments

Comments
 (0)