Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenquotes.git

Add 'sploit to contractions, upgrade libraries

AuthorDave Jarvis <email>
Date2022-03-27 13:43:59 GMT-0700
Commit601768c2e04e82314a11d0e04217d19f2d170681
Parent79badbb
build.gradle
dependencies {
// Command-line parsing
- implementation 'info.picocli:picocli:4.4.0'
+ implementation 'info.picocli:picocli:4.6.3'
- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
- testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.1'
+ testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
+ testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
src/main/java/com/whitemagicsoftware/keenquotes/Contractions.java
* Placeholder for various types of contractions.
*/
+@SuppressWarnings( "SpellCheckingInspection" )
public class Contractions {
// considered
"sidered",
+ // exploit
+ "sploit",
"t",
"taint",
// are|regarding
"re",
- // what's up|to sup
+ // what's up|to eat
"sup",
// it will|twill fabric
src/main/java/com/whitemagicsoftware/keenquotes/LexemeType.java
/**
- * Represents the type of a {@link Lexeme} parsed by the {@link Lexer}.
+ * Represents the type of {@link Lexeme} parsed by the {@link Lexer}.
*/
+@SuppressWarnings( "SpellCheckingInspection" )
public enum LexemeType {
QUOTE_SINGLE,
PERIOD,
ELLIPSIS,
- FLAG,
- TAG
+ FLAG
}
Delta10 lines added, 7 lines removed, 3-line increase