Skip to content

Commit 418be7e

Browse files
README update №2
1 parent e1f9ba9 commit 418be7e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ If you are using the Eclipse IDE, make sure you are using verison Luna or later.
114114
- FIXED bug which was found and reproduced with Eclipse for Mac OS X. Please read about details here: [#252](https://github.com/appium/java-client/issues/252)
115115
Thanks to [saikrishna321](https://github.com/saikrishna321) for the bug report
116116
- FIXED bug which was found out by [Jonahss](https://github.com/Jonahss). Thanks for the reporting. Details: [#272](https://github.com/appium/java-client/issues/272)
117+
and [#273](https://github.com/appium/java-client/issues/273)
117118
- The ability to set additional output streams was provided
118119
- The additional __startActivity()__ method was added to AndroidDriver. It allows to start activities without the stopping of a target app
119120
Thanks to [deadmoto](https://github.com/deadmoto) for the contribution

src/main/java/io/appium/java_client/service/local/AppiumServiceBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private static String readErrorStream(Process process) {
100100
if (StringUtils.isBlank(current)) {
101101
continue;
102102
}
103-
result = result + current;
103+
result = result + current + "\n";
104104
}
105105
reader.close();
106106
} catch (IOException e) {

0 commit comments

Comments
 (0)