Dave Jarvis' Repositories

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

Fixes multiplication

AuthorDaveJarvis <email>
Date2023-12-02 17:31:55 GMT-0800
Commitd9f0bef50db06f92ba4848af657701ac213976e0
Parentd9845ba
Delta1 line added, 1 line removed
src/main/java/com/keenwrite/collections/InterpolatingMap.java
final var matcher = mOperator.match( value );
- final var sb = new StringBuilder( value.length() >> 1 );
+ final var sb = new StringBuilder( value.length() << 1 );
while( matcher.find() ) {