From f0e0c5d2b0882b61b71e691ce9711d459b3cc006 Mon Sep 17 00:00:00 2001 From: Dani Megert Date: Thu, 23 Oct 2014 14:54:41 +0200 Subject: Increse the capping limit to 10^8 (see bug 447565 for details) --- .../src/org/eclipse/compare/internal/core/LCS.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bundles/org.eclipse.compare.core') 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 -- cgit v1.2.3