Fixed Ignore Bug

This commit is contained in:
Speiger 2022-05-21 19:43:35 +02:00
parent 9c4c33c1eb
commit 2fe297b708
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ repositories {
} }
} }
dependencies { dependencies {
compile 'de.speiger:Simple-Code-Generator:1.1.0' compile 'de.speiger:Simple-Code-Generator:1.1.3'
} }
``` ```

View File

@ -5,7 +5,7 @@ repositories {
} }
archivesBaseName = 'Simple Code Generator' archivesBaseName = 'Simple Code Generator'
version = '1.1.2' version = '1.1.3'
apply plugin: 'maven' apply plugin: 'maven'
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {

View File

@ -14,6 +14,6 @@ public class IdGenerator
public String getId() public String getId()
{ {
return "#ignoreLine"+builder.toString(); return "#ignoreLine"+builder.toString()+"suffix";
} }
} }