summaryrefslogtreecommitdiff
path: root/core/java/android/bluetooth/BluetoothInputStream.java
diff options
context:
space:
mode:
authorJack He <siyuanh@google.com>2017-08-22 16:06:54 -0700
committerJack He <siyuanh@google.com>2017-08-24 19:09:48 +0000
commita355e5efaf45a534ee6437aa4bae7d30f18c0ec2 (patch)
treefbc120fa95a5cc0c3d1936a955e09d356f2d029b /core/java/android/bluetooth/BluetoothInputStream.java
parentb09cf3fbf1c7e340bc06e8aba06461d4a0bae457 (diff)
Fix checkstyle errors (1/2)
* Automatic style corrections through IDE Bug: 63596319 Test: make checkbuild, no manual changes, no functional changes Change-Id: I2397d55abc34c9b7a9b748bec6137778df3421a7
Diffstat (limited to 'core/java/android/bluetooth/BluetoothInputStream.java')
-rw-r--r--core/java/android/bluetooth/BluetoothInputStream.java28
1 files changed, 10 insertions, 18 deletions
diff --git a/core/java/android/bluetooth/BluetoothInputStream.java b/core/java/android/bluetooth/BluetoothInputStream.java
index 03af95337c50..062e4de0a78a 100644
--- a/core/java/android/bluetooth/BluetoothInputStream.java
+++ b/core/java/android/bluetooth/BluetoothInputStream.java
@@ -51,15 +51,14 @@ import java.io.InputStream;
* stream is detected or an exception is thrown.
*
* @return the byte read or -1 if the end of stream has been reached.
- * @throws IOException
- * if the stream is closed or another IOException occurs.
+ * @throws IOException if the stream is closed or another IOException occurs.
* @since Android 1.5
*/
public int read() throws IOException {
byte b[] = new byte[1];
int ret = mSocket.read(b, 0, 1);
if (ret == 1) {
- return (int)b[0] & 0xff;
+ return (int) b[0] & 0xff;
} else {
return -1;
}
@@ -69,21 +68,14 @@ import java.io.InputStream;
* Reads at most {@code length} bytes from this stream and stores them in
* the byte array {@code b} starting at {@code offset}.
*
- * @param b
- * the byte array in which to store the bytes read.
- * @param offset
- * the initial position in {@code buffer} to store the bytes
- * read from this stream.
- * @param length
- * the maximum number of bytes to store in {@code b}.
- * @return the number of bytes actually read or -1 if the end of the stream
- * has been reached.
- * @throws IndexOutOfBoundsException
- * if {@code offset < 0} or {@code length < 0}, or if
- * {@code offset + length} is greater than the length of
- * {@code b}.
- * @throws IOException
- * if the stream is closed or another IOException occurs.
+ * @param b the byte array in which to store the bytes read.
+ * @param offset the initial position in {@code buffer} to store the bytes read from this
+ * stream.
+ * @param length the maximum number of bytes to store in {@code b}.
+ * @return the number of bytes actually read or -1 if the end of the stream has been reached.
+ * @throws IndexOutOfBoundsException if {@code offset < 0} or {@code length < 0}, or if {@code
+ * offset + length} is greater than the length of {@code b}.
+ * @throws IOException if the stream is closed or another IOException occurs.
* @since Android 1.5
*/
public int read(byte[] b, int offset, int length) throws IOException {