We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61a382 commit 09b8a19Copy full SHA for 09b8a19
src/java.base/share/classes/java/net/URISyntaxException.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
@@ -44,13 +44,13 @@ public class URISyntaxException
44
/**
45
* The input string.
46
*/
47
- private String input;
+ private final String input;
48
49
50
* The index at which the parse error occurred,
51
* or {@code -1} if the index is not known.
52
53
- private int index;
+ private final int index;
54
55
56
* Constructs an instance from the given input string, reason, and error
0 commit comments