checkstyle: enable and apply WhitespaceAfter
This commit is contained in:
parent
5736c70dc8
commit
793788eadf
@ -24,8 +24,7 @@ class HoneycombClipboard extends ClipboardCompat {
|
|||||||
private final ClipboardManager manager;
|
private final ClipboardManager manager;
|
||||||
|
|
||||||
protected HoneycombClipboard(Context context) {
|
protected HoneycombClipboard(Context context) {
|
||||||
this.manager =
|
this.manager = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
||||||
(ClipboardManager)context.getSystemService(Context.CLIPBOARD_SERVICE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -144,7 +144,6 @@ public final class Request {
|
|||||||
|
|
||||||
int b = input.read();
|
int b = input.read();
|
||||||
|
|
||||||
|
|
||||||
if (((char) b) == '\n') {
|
if (((char) b) == '\n') {
|
||||||
if (baos.size() > 0)
|
if (baos.size() > 0)
|
||||||
line = new String(baos.toByteArray());
|
line = new String(baos.toByteArray());
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
<!--<module name="OperatorWrap" />-->
|
<!--<module name="OperatorWrap" />-->
|
||||||
<module name="ParenPad" />
|
<module name="ParenPad" />
|
||||||
<module name="TypecastParenPad" />
|
<module name="TypecastParenPad" />
|
||||||
<!--<module name="WhitespaceAfter" />-->
|
<module name="WhitespaceAfter" />
|
||||||
<!--<module name="WhitespaceAround" />-->
|
<!--<module name="WhitespaceAround" />-->
|
||||||
|
|
||||||
<module name="ModifierOrder" />
|
<module name="ModifierOrder" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user