mirror of
https://github.com/apple/pkl.git
synced 2026-04-10 10:53:40 +02:00
Fix Javadoc and kotlinc warnings (#1490)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2016-2025 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
* Copyright © 2016-2026 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -1016,7 +1016,7 @@ public abstract class RrbTree<E> implements BaseList<E>, Indented {
|
||||
* Can we put focus at the given index without reshuffling nodes?
|
||||
*
|
||||
* @param index the index we want to insert at
|
||||
* @param size the number of items to insert. Must be size < MAX_NODE_LENGTH
|
||||
* @param size the number of items to insert. Must be {@code size < MAX_NODE_LENGTH}
|
||||
* @return true if we can do so without otherwise adjusting the tree.
|
||||
*/
|
||||
boolean hasRelaxedCapacity(int index, int size);
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
*
|
||||
* <p>Original license:
|
||||
*
|
||||
* <p>Copyright 2016-05-28 PlanBase Inc. & Glen Peterson
|
||||
* <p>Copyright 2016-05-28 PlanBase Inc. & Glen Peterson
|
||||
*
|
||||
* <p>Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
|
||||
* except in compliance with the License.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024-2025 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
* Copyright © 2024-2026 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -35,7 +35,7 @@ internal abstract class PageGenerator<out S>(
|
||||
consoleOut: OutputStream,
|
||||
) : AbstractGenerator(consoleOut) where S : PageScope {
|
||||
companion object {
|
||||
private val json = Json {}
|
||||
private val json = Json
|
||||
}
|
||||
|
||||
private val markdownInlineParserFactory = MarkdownParserFactory(pageScope)
|
||||
|
||||
Reference in New Issue
Block a user