Remove dead test code

Signed-off-by: stefan-niedermann <info@niedermann.it>
This commit is contained in:
stefan-niedermann 2020-02-24 18:50:38 +01:00
parent 75bdb4c2cc
commit c426e1839c

View file

@ -1,7 +1,5 @@
package it.niedermann.owncloud.notes.util;
import androidx.annotation.NonNull;
import junit.framework.TestCase;
import java.util.HashMap;
@ -13,14 +11,6 @@ import java.util.Map;
*/
public class MarkDownUtilTest extends TestCase {
public static int getStartOfLine(@NonNull CharSequence s, int start) {
int startOfLine = start;
while (startOfLine > 0 && s.charAt(startOfLine - 1) != '\n') {
startOfLine--;
}
return startOfLine;
}
public void testGetStartOfLine() {
//language=md
StringBuilder test = new StringBuilder(