mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8276348: Use blessed modifier order in java.base
Reviewed-by: dfuchs, darcy, iris, rriggs, martin
This commit is contained in:
parent
465d350d0b
commit
615063364a
21 changed files with 39 additions and 39 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -118,7 +118,7 @@ final class StackStreamFactory {
|
|||
* For example, StackFrameInfo for StackWalker::walk or
|
||||
* Class<?> for StackWalker::getCallerClass
|
||||
*/
|
||||
static abstract class AbstractStackWalker<R, T> {
|
||||
abstract static class AbstractStackWalker<R, T> {
|
||||
protected final StackWalker walker;
|
||||
protected final Thread thread;
|
||||
protected final int maxDepth;
|
||||
|
@ -783,7 +783,7 @@ final class StackStreamFactory {
|
|||
*
|
||||
* Each specialized AbstractStackWalker subclass may subclass the FrameBuffer.
|
||||
*/
|
||||
static abstract class FrameBuffer<F> {
|
||||
abstract static class FrameBuffer<F> {
|
||||
static final int START_POS = 2; // 0th and 1st elements are reserved
|
||||
|
||||
// buffers for VM to fill stack frame info
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue