Skip to content

Commit

Permalink
QVQ
Browse files Browse the repository at this point in the history
  • Loading branch information
pencilso committed Dec 15, 2017
1 parent 502f2b8 commit e9fff61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ManyBlue/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 18
targetSdkVersion 25
versionCode 1
versionName "1.1.8"
versionName "1.1.9"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion ManyBlue/src/main/java/io/javac/ManyBlue/ManyBlue.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public static void blueWriteDataStr2Hex(String data, Object tag) {
* @param data
* @param tag
*/
public static void blueWriteDataByteArray(Byte data[], Object tag) {
public static void blueWriteDataByteArray(byte data[], Object tag) {
if (data == null || tag == null) throw new NullPointerException("param can'not null");
NotifyMessage notifyMessage = NotifyMessage.newInstance().setTag(tag).setData(data).setCode(CodeUtils.SERVICE_WRITE_DATA_TOBYTE);
EventManager.recePost(notifyMessage);
Expand Down

0 comments on commit e9fff61

Please sign in to comment.