Skip to content

Commit 4b49ba0

Browse files
committed
Correct package of ComarcXmlHandler
The package statement did not match the location of the class in the source tree.
1 parent bd9e8a6 commit 4b49ba0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/org/culturegraph/mf/biblio/ComarcXmlHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.biblio.comarc;
16+
package org.culturegraph.mf.biblio;
1717

1818
import java.util.ArrayList;
1919
import java.util.List;

src/main/resources/flux-commands.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ handle-generic-xml org.culturegraph.mf.xml.GenericXmlHandler
5858
handle-marcxml org.culturegraph.mf.biblio.marc21.MarcXmlHandler
5959
handle-picaxml org.culturegraph.mf.biblio.pica.PicaXmlHandler
6060
handle-mabxml org.culturegraph.mf.biblio.AlephMabXmlHandler
61-
handle-comarcxml org.culturegraph.mf.biblio.comarc.ComarcXmlHandler
61+
handle-comarcxml org.culturegraph.mf.biblio.ComarcXmlHandler
6262

6363
# Encoders:
6464
encode-literals org.culturegraph.mf.formatting.StreamLiteralFormatter

src/test/java/org/culturegraph/mf/biblio/ComarcXmlHandlerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.biblio.comarc;
16+
package org.culturegraph.mf.biblio;
1717

1818
import static org.mockito.Mockito.verify;
1919

0 commit comments

Comments
 (0)