From 0413539e267935009220b19014f8c1185d481c64 Mon Sep 17 00:00:00 2001 From: sceller Date: Tue, 11 Dec 2018 14:23:29 -0800 Subject: Bring line 97 under 100 characters (#103) --- .../google/android/mobly/snippet/bundled/AudioSnippet.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/main/java/com/google/android/mobly/snippet/bundled') 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, -- cgit v1.2.3