2014/1/22 Sha <[email protected]> > thanks Lukas, > > I got it resolved. > For some reason static import is not working .... yet to investigate for > some time using qualified path. Its working. >
The only reason I can think of for a static import not to work is when you have a "local" method, i.e. a method in your local class hierarchy, that shadows the static import. Such local methods are always preferred by the compiler. E.g. you can never static-import an "equals" method from any type. -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
