Hiroyuki Inaba
Hiroyuki Inaba
In HeaderLengthValidator.java addLocalizedError(section.getJoinedHeaderContents(), getInt("max_len")); In error-messages.properties HeaderLengthValidator=The length of header ({0}) exceeds the maximum of {1}. Therefore, "{1}" is displayed in the message.
Entry of dict - SuggestExpressionValidator: "更に" "さらに" Input text: ・・・の変更について・・・ Decomposed tokens: の, 変更, について ==> Detects "更に"
This is a pen1 (or pen12), and it is a pen2 (or pen22). ) near tokens: - token.getSurface(): ")," - token.getSurface(): ")." Therefore, nestingLevel is not decremented.
In redpen/redpen-core/src/main/java/cc/redpen/formatter/Formatter.java ByteArrayOutputStream baos = new ByteArrayOutputStream(); : format(new PrintWriter(baos), docErrorsMap); : return new String(baos.toByteArray(), StandardCharsets.UTF_8); I think it depends on the default character encoding of PrintWriter. And, should use...
interrupt0 is called when pin is PIN_3_INT1 } else if (interrupt == InterruptPin.PIN_3_INT1) { interruptRoutineExecutor.submit(new Runnable() { public void run() { try { interrupt0(); } catch (InvalidPinTypeException e) { e.printStackTrace();...
package org.sintef.jarduino; public enum InterruptPin { PIN_2_INT0((byte)2), PIN_3_INT1((byte)3); static { map = new HashMap(); map.put((byte)2, InterruptPin.PIN_2_INT0); map.put((byte)3, InterruptPin.PIN_3_INT1); } Value of InterruptPin is incorrect Should use 0, 1? JArduino.h #define...