Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2014-10-23 12:54:41 +0000
committerDani Megert2014-10-23 12:54:41 +0000
commitf0e0c5d2b0882b61b71e691ce9711d459b3cc006 (patch)
treeb8692a3d51cab64d61c4799db74ac326ae6dfd11 /bundles/org.eclipse.compare.core
parent815cdd56839d7a9ac6105b71ccd640efcfcf4a8a (diff)
downloadeclipse.platform.team-f0e0c5d2b0882b61b71e691ce9711d459b3cc006.tar.gz
eclipse.platform.team-f0e0c5d2b0882b61b71e691ce9711d459b3cc006.tar.xz
eclipse.platform.team-f0e0c5d2b0882b61b71e691ce9711d459b3cc006.zip
Increse the capping limit to 10^8 (see bug 447565 for details)I20141027-0800I20141026-2100
Diffstat (limited to 'bundles/org.eclipse.compare.core')
-rw-r--r--bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/LCS.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/LCS.java b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/LCS.java
index 523700538..78c3096c2 100644
--- a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/LCS.java
+++ b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/LCS.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -16,7 +16,7 @@ import org.eclipse.core.runtime.SubMonitor;
/* Used to determine the change set responsible for each line */
public abstract class LCS {
- public static final double TOO_LONG = 10000000.0; // the value of N*M when
+ public static final double TOO_LONG = 100000000.0; // 10^8, the value of N*M when
// to start binding the
// run time

Back to the top