Menu

Is anyone using this lib

Adrian
2005-07-02
2013-04-17
  • Adrian

    Adrian - 2005-07-02

    Hi,
    Is anyone using this lib in any manner. Is it worth adding features or not.

     
  • rogerwh

    rogerwh - 2010-05-14

    Yes, I am using it.  I have a patch to fix warnings when compiling source using JDK 1.6:
    === LinkedListWorkGroup.java rev 1 ====
    13a14,17
    >  *
    >  * RWhitcomb (Ingres Corp.)
    >  *  14-May-2010 - Remove warning compiling with JDK 1.6 about unchecked operation by
    >  *                making "list" into a typed value.
    18c22
    <     private LinkedList         list;
    --
    >     private LinkedList<Object>   list;
    21c25
    <       list = new LinkedList();
    --
    >       list = new LinkedList<Object>();
    === SimpleThreadManager.java rev 1 ====
    13a14,17
    >  *
    >  * RWhitcomb (Ingres Corp.)
    >  *  14-May-2010 - Remove warning compiling with JDK 1.6 about deprecated method 'destroy' by
    >  *                marking it as @Deprecated here also (in WorkingThread class).
    143c147,148
    <
    --
    >
    >       @Deprecated

     

Log in to post a comment.