Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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