You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2009/08/11 09:52:50 UTC

svn commit: r803018 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/math/EquationManager.java

Author: lofwyr
Date: Tue Aug 11 07:52:50 2009
New Revision: 803018

URL: http://svn.apache.org/viewvc?rev=803018&view=rev
Log:
TOBAGO-606: Layout-Manager
 - reduce logging

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/math/EquationManager.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/math/EquationManager.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/math/EquationManager.java?rev=803018&r1=803017&r2=803018&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/math/EquationManager.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/math/EquationManager.java Tue Aug 11 07:52:50 2009
@@ -17,8 +17,6 @@
  * limitations under the License.
  */
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
 import org.apache.myfaces.tobago.layout.Measure;
 
 /**
@@ -26,8 +24,6 @@
  */
 public class EquationManager {
 
-  private static final Log LOG = LogFactory.getLog(EquationManager.class);
-
   private SystemOfEquations equations;
   private Measure[] result;
 
@@ -50,7 +46,6 @@
         new PartitionEquation(newIndices[0], number, index, spacing, beginOffset, endOffset, component));
     equations.addEqualsEquation(
         new RemainderEquation(newIndices[number], component));
-    LOG.info(equations);
     return newIndices;
   }
 
@@ -60,7 +55,6 @@
 
     int[] newIndices = equations.addVariables(1);
     equations.addEqualsEquation(new CombinationEquation(newIndices[0], index, span, spacing, component));
-    LOG.info(equations);
     return newIndices[0];
   }
 
@@ -72,7 +66,6 @@
     assert factor2 > 0;
 
     equations.addEqualsEquation(new ProportionEquation(index1, index2, factor1, factor2, component));
-    LOG.info(equations);
   }
 
   public void solve() {