You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/01/27 10:11:04 UTC

svn commit: r615566 - /ofbiz/trunk/specialpurpose/pos/src/org/ofbiz/pos/component/Journal.java

Author: jleroux
Date: Sun Jan 27 01:11:03 2008
New Revision: 615566

URL: http://svn.apache.org/viewvc?rev=615566&view=rev
Log:
Removed some obsolete comments

Modified:
    ofbiz/trunk/specialpurpose/pos/src/org/ofbiz/pos/component/Journal.java

Modified: ofbiz/trunk/specialpurpose/pos/src/org/ofbiz/pos/component/Journal.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/pos/src/org/ofbiz/pos/component/Journal.java?rev=615566&r1=615565&r2=615566&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/pos/src/org/ofbiz/pos/component/Journal.java (original)
+++ ofbiz/trunk/specialpurpose/pos/src/org/ofbiz/pos/component/Journal.java Sun Jan 27 01:11:03 2008
@@ -50,7 +50,6 @@
     protected String style = null;
 
     public Journal(PosScreen page) {    	
-        //The vertical bar is always visible to allow access to horizontal bar without shrink the journal panel
         this.jpanel = (XScrollPane) page.findComponent("journal_panel");
         this.jpanel.setVisible(false);
         this.jpanel.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
@@ -78,7 +77,6 @@
             jtable.setModel(jmodel);
 
             for (int i = 0; i < width.length; i++) {
-                //causes infinite loop
                 jtable.setColWidth(i, width[i]);
             }
         }