aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
authorsceller <sceller999@gmail.com>2018-12-11 14:23:29 -0800
committerAng Li <angli@google.com>2018-12-11 14:23:29 -0800
commit0413539e267935009220b19014f8c1185d481c64 (patch)
tree3fcfa343c08fae27b3573c6469855135bdee8fb7 /src/main/java/com
parent2e3f116cecba6649979aa916436d90dbace32671 (diff)
downloadmobly-bundled-snippets-0413539e267935009220b19014f8c1185d481c64.tar.gz
Bring line 97 under 100 characters (#103)
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/google/android/mobly/snippet/bundled/AudioSnippet.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/com/google/android/mobly/snippet/bundled/AudioSnippet.java b/src/main/java/com/google/android/mobly/snippet/bundled/AudioSnippet.java
index 9871c4b..e435a72 100644
--- a/src/main/java/com/google/android/mobly/snippet/bundled/AudioSnippet.java
+++ b/src/main/java/com/google/android/mobly/snippet/bundled/AudioSnippet.java
@@ -55,8 +55,8 @@ public class AudioSnippet implements Snippet {
@Rpc(
description =
- "Sets the music stream volume. The minimum value is 0. Use getMusicMaxVolume"
- + "to determine the maximum."
+ "Sets the music stream volume. The minimum value is 0. Use 'getMusicMaxVolume'"
+ + " to determine the maximum."
)
public void setMusicVolume(Integer value) {
mAudioManager.setStreamVolume(
@@ -75,8 +75,8 @@ public class AudioSnippet implements Snippet {
@Rpc(
description =
- "Sets the ringer stream volume. The minimum value is 0. Use getRingMaxVolume"
- + "to determine the maximum."
+ "Sets the ringer stream volume. The minimum value is 0. Use 'getRingMaxVolume'"
+ + " to determine the maximum."
)
public void setRingVolume(Integer value) {
mAudioManager.setStreamVolume(AudioManager.STREAM_RING, value, 0 /* flags, 0 = no flags */);
@@ -94,8 +94,8 @@ public class AudioSnippet implements Snippet {
@Rpc(
description =
- "Sets the voice call stream volume. The minimum value is 0. Use getVoiceCallMaxVolume"
- + "to determine the maximum."
+ "Sets the voice call stream volume. The minimum value is 0. Use"
+ + " 'getVoiceCallMaxVolume' to determine the maximum."
)
public void setVoiceCallVolume(Integer value) {
mAudioManager.setStreamVolume(AudioManager.STREAM_VOICE_CALL,