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 2010/10/25 16:36:33 UTC

svn commit: r1027144 - /myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/util/DebugUtils.java

Author: lofwyr
Date: Mon Oct 25 14:36:32 2010
New Revision: 1027144

URL: http://svn.apache.org/viewvc?rev=1027144&view=rev
Log:
prevent instantiation

Modified:
    myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/util/DebugUtils.java

Modified: myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/util/DebugUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/util/DebugUtils.java?rev=1027144&r1=1027143&r2=1027144&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/util/DebugUtils.java (original)
+++ myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/util/DebugUtils.java Mon Oct 25 14:36:32 2010
@@ -24,6 +24,11 @@ import java.util.Set;
 
 
 public class DebugUtils {
+
+  private DebugUtils() {
+    // to prevent instantiation
+  }
+
   public static String toString(UIComponent component, int offset) {
     return toString(component, offset, false);
   }