Skip to content

Commit

Permalink
Merge pull request #8192 from vieiro/hotfix/8174
Browse files Browse the repository at this point in the history
#8174: Bump ide/libs.tomljava
  • Loading branch information
mbien authored Feb 27, 2025
2 parents e031a38 + 652a76d commit f198805
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,20 @@ public void testInsertSingleQuote4() throws Exception {
insertChar("foo= ^bar", '\'', "foo= 'bar'^", "bar");
}

public void testStepSingleQuote() throws Exception {
public void testStepSingleQuote() throws Exception {
insertChar("foo= '^'", '\'', "foo= ''^");
}

public void testDeleteSingle2() throws Exception {
deleteChar("foo= ''^", "foo= '^");
}

public void testDeleteLastBrace() throws Exception {
deleteChar("[plugins]\n"
+ "jooq-codegen = { id = \"org.jooq.jooq-codegen-gradle\", version.ref=\"jooq\" }^",
"[plugins]\n"
+ "jooq-codegen = { id = \"org.jooq.jooq-codegen-gradle\", version.ref=\"jooq\" ^"
);
}

}
2 changes: 1 addition & 1 deletion ide/libs.tomljava/external/binaries-list
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
FC26667B60FE746EEA788957157FA280D8F456DF net.vieiro:toml-java:13.4.1
47006953C4961EDC2B14E55D01801FF95CF321DF net.vieiro:toml-java:13.4.2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: TOML parser in Java
Version: 13.4.1
Version: 13.4.2
Description: A parser for Tom's Obvious, Minimal Language (TOML).
License: Apache-2.0
Origin: https://github.com/vieiro/toml-java
Expand Down
2 changes: 1 addition & 1 deletion ide/libs.tomljava/nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
is.autoload=true
javac.source=1.8
javac.compilerargs=-Xlint -Xlint:-serial
release.external/toml-java-13.4.1.jar=modules/ext/toml-java-13.4.1.jar
release.external/toml-java-13.4.2.jar=modules/ext/toml-java-13.4.2.jar
4 changes: 2 additions & 2 deletions ide/libs.tomljava/nbproject/project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<package>net.vieiro.toml.antlr4</package>
</public-packages>
<class-path-extension>
<runtime-relative-path>ext/toml-java-13.4.1.jar</runtime-relative-path>
<binary-origin>external/toml-java-13.4.1.jar</binary-origin>
<runtime-relative-path>ext/toml-java-13.4.2.jar</runtime-relative-path>
<binary-origin>external/toml-java-13.4.2.jar</binary-origin>
</class-path-extension>
</data>
</configuration>
Expand Down

0 comments on commit f198805

Please sign in to comment.