Skip to content

Commit de793ec

Browse files
committed
Fix docs for publishing
1 parent bc71933 commit de793ec

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ val commonsTextVersion = "1.15.0"
1212
val opentest4jVersion = "1.3.0"
1313

1414
lazy val hocon = project.in(file(".")).enablePlugins(SbtIdeaPlugin).settings(
15-
version := "2025.3.99-SNAPSHOT",
15+
version := "2026.1.2-SNAPSHOT",
1616
Compile / scalaSource := baseDirectory.value / "src",
1717
Test / scalaSource := baseDirectory.value / "test",
1818
Compile / resourceDirectory := baseDirectory.value / "resources",

src/org/jetbrains/plugins/hocon/editor/HoconEnterBetweenBracesHandler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import org.jetbrains.plugins.hocon.lang.HoconLanguage
1212

1313
import scala.annotation.nowarn
1414

15-
/** Like [[com.intellij.json.formatter.JsonEnterBetweenBracesHandler]]
15+
/** Like com.intellij.json.formatter.JsonEnterBetweenBracesHandler
1616
*
1717
* @author
1818
* ghik

src/org/jetbrains/plugins/hocon/editor/HoconObjectEntryMover.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import org.jetbrains.plugins.hocon.psi.*
1111

1212
import scala.annotation.tailrec
1313

14-
/** An implementation of [[com.intellij.codeInsight.editorActions.moveUpDown.StatementUpDownMover]] which can move
14+
/** An implementation of com.intellij.codeInsight.editorActions.moveUpDown.StatementUpDownMover which can move
1515
* entire HOCON object entries (object fields or include statements).
1616
*
1717
* The entry being moved is being required to be the only entry in its own lines, i.e. there may not be any other entry

src/org/jetbrains/plugins/hocon/parser/HoconElementType.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ object HoconElementType {
110110
val Concatenation = new HoconElementType("CONCATENATION")
111111

112112
/** Unquoted string - a concatenation of whitespace, unquoted chars, parens and periods. This element type exists
113-
* primarily so that [[String]] element always has exactly one child (unquoted, quoted or multiline string). Unquoted
114-
* string occurs as a child of [[String]] or [[Key]].
113+
* primarily so that String element always has exactly one child (unquoted, quoted or multiline string). Unquoted
114+
* string occurs as a child of String or Key.
115115
*/
116116
val UnquotedString = new HoconElementType("UNQUOTED_STRING")
117117

src/org/jetbrains/plugins/hocon/settings/HoconProjectSettingsPanel.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ public void apply() {
9292
mainPanel.add(propertyReferencesCheckBox, new GridConstraints(2, 0, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
9393
}
9494

95-
/**
96-
* @noinspection ALL
97-
*/
9895
public JComponent $$$getRootComponent$$$() {
9996
return mainPanel;
10097
}

0 commit comments

Comments
 (0)