CheckStyle
author"Vincent Veronis"
Wed, 29 Dec 2010 13:54:02 +0100
changeset 844 7527ec12857d
parent 843 97a429f938ae
child 845 5437786281e3
CheckStyle
src/com/beem/project/beem/service/ChatAdapter.java
--- a/src/com/beem/project/beem/service/ChatAdapter.java	Wed Dec 29 13:14:49 2010 +0100
+++ b/src/com/beem/project/beem/service/ChatAdapter.java	Wed Dec 29 13:54:02 2010 +0100
@@ -210,7 +210,7 @@
      * Save message in SDCard.
      * @param msg the message receive
      * @param contactName the name of the contact
-     */ 
+     */
     public void saveHistory(Message msg, String contactName) {
     	String state = Environment.getExternalStorageState();
     	if (mIsHisory && Environment.MEDIA_MOUNTED.equals(state)) {
@@ -223,8 +223,8 @@
     	    path.mkdirs();
     	    try {
     	    	FileWriter file = new FileWriter(filepath, true);
-    		String log = msg.getTimestamp() + " " + contactName + " " + msg.getBody() +
-    			System.getProperty("line.separator");
+    		String log = msg.getTimestamp() + " " + contactName + " " + msg.getBody()
+    			+ System.getProperty("line.separator");
     		file.write(log);
     		file.close();
     		Log.i(TAG, log);
@@ -236,7 +236,7 @@
 
     /**
      * set History state.
-     * @param mIsHisory history state
+     * @param isHisory history state
      */
     public void setHisory(boolean isHisory) {
 	this.mIsHisory = isHisory;