You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by le...@apache.org on 2002/03/04 10:17:02 UTC

cvs commit: jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui LineChart.java

leif        02/03/04 01:17:02

  Modified:    src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui
                        LineChart.java
  Log:
  Remove commented code.
  
  Revision  Changes    Path
  1.3       +1 -16     jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui/LineChart.java
  
  Index: LineChart.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui/LineChart.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LineChart.java	4 Mar 2002 08:58:11 -0000	1.2
  +++ LineChart.java	4 Mar 2002 09:17:02 -0000	1.3
  @@ -24,7 +24,7 @@
    * Draws a nice pretty chart given a set of data.
    *
    * @author <a href="mailto:leif@silveregg.co.jp">Leif Mortenson</a>
  - * @version CVS $Revision: 1.2 $ $Date: 2002/03/04 08:58:11 $
  + * @version CVS $Revision: 1.3 $ $Date: 2002/03/04 09:17:02 $
    * @since 4.1
    */
   
  @@ -36,9 +36,6 @@
       extends JComponent
       implements MouseListener, MouseMotionListener
   {
  -    /** Time at the beginning of the year. */
  -    //private static final long m_baseTime;
  -    
       private Color m_lineColor = Color.red;
       private Color m_lightLineColor = new Color(255, 128, 128);
       private Color m_lightGridColor = new Color(192, 192, 192);
  @@ -87,18 +84,6 @@
       private boolean m_mousePressed;
       private int m_mouseX;
       private int m_mouseY;
  -    
  -    /*
  -    static
  -    {
  -        // Set the base time to the beginning of this year
  -        Calendar calendar = Calendar.getInstance();
  -        int year = calendar.get(Calendar.YEAR);
  -        calendar.clear();
  -        calendar.set( Calendar.YEAR, year );
  -        m_baseTime = calendar.getTime().getTime();
  -    }
  -    */
       
       /*---------------------------------------------------------------
        * Constructor
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>