Migrate RFC references to rfc-editor.org
[yangtools.git] / data / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / BinaryStringCodec.java
index b59ef43e80900e8988854b1cd2e88f30a98a484b..b4a167e0f817a64cf34c17e95cba36417c5efc89 100644 (file)
@@ -64,7 +64,7 @@ public abstract sealed class BinaryStringCodec extends TypeDefinitionAwareCodec<
 
     @Override
     public final byte[] deserializeImpl(final String product) {
-        // https://tools.ietf.org/html/rfc4648#section-4 plus lenient to allow for MIME blocks
+        // https://www.rfc-editor.org/rfc/rfc4648#section-4 plus lenient to allow for MIME blocks
         final byte[] ret = Base64.getMimeDecoder().decode(product);
         validate(ret);
         return ret;