View Single Post
  #2 (permalink)  
Old 08-07-2007, 06:44 AM
cachi cachi is offline
Member
 
Join Date: Jul 2007
Posts: 40
cachi is on a distinguished road
Code:
add(new Term(c, d)); // <---ERROR HERE
You can't call a method that isn't static all by itself like that. It needs an object.
Either that, or make the method static.

Greetings.
Reply With Quote