Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 730fd8fc authored by tibbi's avatar tibbi
Browse files

add a BufferedWriter extension for write line

parent 00546180
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ buildscript {
        propMinSdkVersion = 16
        propTargetSdkVersion = propCompileSdkVersion
        propVersionCode = 1
        propVersionName = '3.7.3'
        propVersionName = '3.7.4'
        kotlin_version = '1.2.10'
        support_libs = '27.0.2'
    }
+8 −0
Original line number Diff line number Diff line
package com.simplemobiletools.commons.extensions

import java.io.BufferedWriter

fun BufferedWriter.writeLn(line: String) {
    write(line)
    newLine()
}
+2 −2
Original line number Diff line number Diff line
@@ -287,10 +287,10 @@
    <string name="joda_title">Joda-Time (Java-dato-erstatning)</string>
    <string name="stetho_title">Stetho (debugging databases)</string>
    <string name="otto_title">Otto (event bus)</string>
    <string name="photoview_title">PhotoView (zoombare GIF'er)</string>
    <string name="photoview_title">PhotoView (zoombare GIF\'er)</string>
    <string name="pattern_title">PatternLockView (mønsterbeskyttelse)</string>
    <string name="reprint_title">Reprint (beskyttelse af fingeraftryk)</string>
    <string name="gif_drawable_title">Gif Drawable (indlæser GIF'er)</string>
    <string name="gif_drawable_title">Gif Drawable (indlæser GIF\'er)</string>
    <string name="autofittextview_title">AutoFitTextView (resizing text)</string>
    <string name="robolectric_title">Robolectric (tester framework)</string>
    <string name="espresso_title">Espresso (tester helper)</string>