8300177: URISyntaxException fields can be final

Reviewed-by: dfuchs, alanb, jpai
This commit is contained in:
Darragh Clarke 2023-02-07 12:34:29 +00:00 committed by Jaikiran Pai
parent c61a38212e
commit 09b8a19597

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -44,13 +44,13 @@ public class URISyntaxException
/** /**
* The input string. * The input string.
*/ */
private String input; private final String input;
/** /**
* The index at which the parse error occurred, * The index at which the parse error occurred,
* or {@code -1} if the index is not known. * or {@code -1} if the index is not known.
*/ */
private int index; private final int index;
/** /**
* Constructs an instance from the given input string, reason, and error * Constructs an instance from the given input string, reason, and error