Author: justin
Date: Mon Aug 30 15:59:46 2010
New Revision: 990835

URL: http://svn.apache.org/viewvc?rev=990835&view=rev
Log:
SLING-1707 - committing correct version of NodeType printer

Modified:
    
sling/trunk/bundles/jcr/webconsole/src/main/java/org/apache/sling/jcr/webconsole/internal/NodeTypeConfigurationPrinter.java

Modified: 
sling/trunk/bundles/jcr/webconsole/src/main/java/org/apache/sling/jcr/webconsole/internal/NodeTypeConfigurationPrinter.java
URL: 
http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/webconsole/src/main/java/org/apache/sling/jcr/webconsole/internal/NodeTypeConfigurationPrinter.java?rev=990835&r1=990834&r2=990835&view=diff
==============================================================================
--- 
sling/trunk/bundles/jcr/webconsole/src/main/java/org/apache/sling/jcr/webconsole/internal/NodeTypeConfigurationPrinter.java
 (original)
+++ 
sling/trunk/bundles/jcr/webconsole/src/main/java/org/apache/sling/jcr/webconsole/internal/NodeTypeConfigurationPrinter.java
 Mon Aug 30 15:59:46 2010
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with this
+ * work for additional information regarding copyright ownership. The ASF
+ * licenses this file to You under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations 
under
+ * the License.
+ */
 package org.apache.sling.jcr.webconsole.internal;
 
 import java.io.PrintWriter;
@@ -23,10 +39,6 @@ import org.apache.felix.webconsole.ModeA
 import org.apache.sling.jcr.api.SlingRepository;
 
 /**
- * @author justin
- *
- */
-/**
  * A Felix WebConsole ConfigurationPrinter which outputs the current JCR
  * nodetypes.
  */
@@ -161,13 +173,13 @@ public class NodeTypeConfigurationPrinte
 
     private void stopBold(PrintWriter pw, String mode) {
         if (ConfigurationPrinter.MODE_WEB.equals(mode)) {
-            pw.print("</b>");
+         //   pw.print("</b>");
         }
     }
 
     private void startBold(PrintWriter pw, String mode) {
         if (ConfigurationPrinter.MODE_WEB.equals(mode)) {
-            pw.print("<b>");
+          //  pw.print("<b>");
         }
     }
 


Reply via email to