buildframework/helium/sf/java/scm/src/com/nokia/maven/scm/provider/hg/command/info/HgInfoConsumer.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/java/scm/src/com/nokia/maven/scm/provider/hg/command/info/HgInfoConsumer.java	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/java/scm/src/com/nokia/maven/scm/provider/hg/command/info/HgInfoConsumer.java	Fri Aug 13 14:59:05 2010 +0300
@@ -1,49 +1,46 @@
 /*
-* Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of the License "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  
-*
-*/
+ * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
+ * All rights reserved.
+ * This component and the accompanying materials are made available
+ * under the terms of the License "Eclipse Public License v1.0"
+ * which accompanies this distribution, and is available
+ * at the URL "http://www.eclipse.org/legal/epl-v10.html".
+ *
+ * Initial Contributors:
+ * Nokia Corporation - initial contribution.
+ *
+ * Contributors:
+ *
+ * Description:  
+ *
+ */
 
 package com.nokia.maven.scm.provider.hg.command.info;
 
-import org.apache.maven.scm.provider.hg.command.HgConsumer;
+import org.apache.maven.scm.ScmFileStatus;
 import org.apache.maven.scm.log.ScmLogger;
-import org.apache.maven.scm.ScmFileStatus;
+import org.apache.maven.scm.provider.hg.command.HgConsumer;
+
 
 /**
  * Consumer of 'hg info' command output.
  */
-public class HgInfoConsumer
-    extends HgConsumer
-{
+public class HgInfoConsumer extends HgConsumer {
     private String scmRevision = new String();
-    public HgInfoConsumer( ScmLogger logger )
-    {
-        super( logger );
+
+    public HgInfoConsumer(ScmLogger logger) {
+        super(logger);
     }
 
     /** {@inheritDoc} */
-    public void doConsume( ScmFileStatus status, String trimmedLine )
-    {
+    public void doConsume(ScmFileStatus status, String trimmedLine) {
         String[] tagging = trimmedLine.split(" ");
         if (tagging.length == 2) {
-            this.scmRevision = tagging[0];            
-            }
+            this.scmRevision = tagging[0];
+        }
     }
-    
-    public String getRevision()
-    {
+
+    public String getRevision() {
         return scmRevision;
     }
 }