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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

jleroux@apache.org
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]);
             }
         }