Skip to content

Commit

Permalink
Cleanup: Scope.UseInfo.name can be final.
Browse files Browse the repository at this point in the history
  • Loading branch information
woess committed Feb 15, 2024
1 parent b82ed3c commit 5a1d50a
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
Expand Down Expand Up @@ -759,7 +759,7 @@ private String getScopeKindName() {
*/
static final class UseInfo {
/** Used name. */
String name;
final String name;
/** Resolved scope in which the symbol has been defined. Must be a parent scope. */
Scope def;
/** Local scope in which the symbol is used. */
Expand Down

0 comments on commit 5a1d50a

Please sign in to comment.