File tree Expand file tree Collapse file tree
src/org/epics/pvdata/copy Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- <<<<<<< HEAD
2- pvaDataJava
3- ==========
4-
5- pvDataJava is a set of data types and utilities that form part of the EPICS V4 project.
6-
7-
8- Further Info
9- ------------
10-
11- Consult the documents in the documentation directory, in particular
12-
13- * pvDataJava.html
14- * RELEASE_NOTES.md
15-
16- Also see the [ EPICS Version 4 website] ( http://epics-pvdata.sourceforge.net )
17-
18-
19- Building
20- --------
21-
22- Building from the source module requires maven.
23-
24- To build type
25-
26- mvn compile install
27-
28- To clean
29-
30- mvn clean
31-
32- Building the module will generate jars of the .class files, the source
33- and the javadoc.
34-
35- To unzip the a jar, for example the javadoc jar, type
36-
37- java xf <name-of-jar>
38- e.g.
39-
40- java xf pvDataJava-0.2.0-SNAPSHOT-javadoc.jar
41-
42- from the directory containing the jar.
43-
44- =======
451# pvDataJava [ ![ Build Status] ( https://travis-ci.org/epics-base/pvDataJava.svg?branch=master )] ( https://travis-ci.org/epics-base/pvDataJava )
46- >>>>>>> 81ade9b8f2fdbfc1c12b415154e9b7808a35dc1a
Original file line number Diff line number Diff line change 11/*
2- * The License for this software can be found in the file LICENSE that is included with the distribution.
2+ * License terms for this software can be found in the file LICENSE that is included with the distribution
33 */
44package org .epics .pvdata .copy ;
55
1111 *
1212 */
1313public class PVCopyFactory {
14- private static boolean firstTime = true ;
1514 /**
1615 * Map a subset of the fields within a PVRecord.
1716 * @param pvMaster The master PVStructure.
@@ -22,9 +21,6 @@ public class PVCopyFactory {
2221 * @return The PVCopy interface.
2322 */
2423 public static PVCopy create (PVStructure pvMaster ,PVStructure pvRequest ,String structureName ) {
25- if (firstTime ) {
26- firstTime = false ;
27- }
28- return PVCopyImpl .create (pvMaster , pvRequest ,structureName );
24+ return PVCopyImpl .create (pvMaster , pvRequest ,structureName );
2925 }
3026}
You can’t perform that action at this time.
0 commit comments