comparison src/main/java/org/monetdb/mcl/net/MonetUrlParser.java @ 918:2543e24eb79a

Add final to more classes.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 24 Jul 2024 19:38:33 +0200 (9 months ago)
parents 9d21c6e7ed26
children d416e9b6b3d0
comparison
equal deleted inserted replaced
917:c2164decf7f1 918:2543e24eb79a
20 20
21 /** 21 /**
22 * Helper class to keep the URL parsing code separate from the rest of 22 * Helper class to keep the URL parsing code separate from the rest of
23 * the {@link Target} class. 23 * the {@link Target} class.
24 */ 24 */
25 public class MonetUrlParser { 25 public final class MonetUrlParser {
26 private final Target target; 26 private final Target target;
27 private final String urlText; 27 private final String urlText;
28 private final URI url; 28 private final URI url;
29 29
30 private MonetUrlParser(Target target, String url) throws URISyntaxException { 30 private MonetUrlParser(Target target, String url) throws URISyntaxException {