Android Inclusive Code Fixit:  removing "sanity" from logging line where it is not needed.

Change-Id: Idc20e7e0efad4b1fc6f04e844105339fb4774210
Bug: 162536543
diff --git a/samples/ApiDemos/src/com/example/android/mmslib/pdu/PduComposer.java b/samples/ApiDemos/src/com/example/android/mmslib/pdu/PduComposer.java
index 242e7ee..f920a2d 100644
--- a/samples/ApiDemos/src/com/example/android/mmslib/pdu/PduComposer.java
+++ b/samples/ApiDemos/src/com/example/android/mmslib/pdu/PduComposer.java
@@ -1012,7 +1012,7 @@
             }
 
             if (dataLength != (attachment.getLength() - headerLength)) {
-                throw new RuntimeException("BUG: Length sanity check failed");
+                throw new RuntimeException("BUG: Length check failed");
             }
 
             mStack.pop();