Skip to content

Commit 83e964d

Browse files
author
duke
committedSep 20, 2024
Automatic merge of jdk:master into master
2 parents 5b5c9c2 + fe80618 commit 83e964d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/java.desktop/share/classes/javax/swing/SortingFocusTraversalPolicy.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -87,8 +87,8 @@ public class SortingFocusTraversalPolicy
8787
private static final SwingContainerOrderFocusTraversalPolicy
8888
fitnessTestPolicy = new SwingContainerOrderFocusTraversalPolicy();
8989

90-
private final int FORWARD_TRAVERSAL = 0;
91-
private final int BACKWARD_TRAVERSAL = 1;
90+
private static final int FORWARD_TRAVERSAL = 0;
91+
private static final int BACKWARD_TRAVERSAL = 1;
9292

9393
/*
9494
* When true (by default), the legacy merge-sort algo is used to sort an FTP cycle.

0 commit comments

Comments
 (0)
Please sign in to comment.