garydgregory commented on code in PR #271: URL: https://github.com/apache/commons-validator/pull/271#discussion_r1796045548
########## src/main/java/org/apache/commons/validator/routines/checkdigit/Modulus97CheckDigit.java: ########## @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.commons.validator.routines.checkdigit; + +import java.io.Serializable; + +import org.apache.commons.validator.GenericTypeValidator; +import org.apache.commons.validator.GenericValidator; + +/** + * MOD 97-10 module according to ISO/IEC 7064, MOD 97-10. + * <p> + * See <a href="https://de.wikipedia.org/wiki/ISO/IEC_7064">Wikipedia - ISO/IEC_7064 (de)</a> + * for more details. + * </p> + * + * <p> + * This MOD 97-10 module can be used to validate the LEI (Legal Entity Identifier), ICD id 0199 + * and in VATidBECheckDigit (VATIN_BE), and also in LeitwegValidator + * + * @since 1.10.0 + */ +public class Modulus97CheckDigit extends AbstractCheckDigit implements Serializable { Review Comment: Hello @homebeaver That was a bug in our test ;-) Please rebase on master to pick up https://github.com/apache/commons-validator/commit/fdc8ee9c26f668192b34ec5b955b3adf47f98b2d -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org