buildframework/helium/sf/java/metadata/src/com/nokia/helium/metadata/ant/types/SBSLogMetaDataInput.java
branchhelium-9.0
changeset 618 df88fead2976
parent 587 85df38eb4012
--- a/buildframework/helium/sf/java/metadata/src/com/nokia/helium/metadata/ant/types/SBSLogMetaDataInput.java	Tue Apr 27 08:33:08 2010 +0300
+++ b/buildframework/helium/sf/java/metadata/src/com/nokia/helium/metadata/ant/types/SBSLogMetaDataInput.java	Thu Jul 22 17:08:43 2010 +0300
@@ -403,9 +403,9 @@
                 inMainDataSection = true;
                 recordText = false;
                 if (logTextInfo != null) {
-                    Matcher m = buildTimeMatcher.matcher(logTextInfo);
-                    if (m.matches()) {
-                        buildTime = Integer.parseInt(m.group(1));
+                    Matcher matcher = buildTimeMatcher.matcher(logTextInfo);
+                    if (matcher.matches()) {
+                        buildTime = Integer.parseInt(matcher.group(1));
                         logger.info("Run time: " + buildTime);
                     }
                 }