Re: SimpleKey problem in build -Correction

2001-02-25 Thread Dave Bryson
On Sun, 25 Feb 2001, you wrote: This is busting the build: CORRECTION - this is BaseObject // in BasePeer public void setPrimaryKey(int primaryKey) throws Exception { this.primaryKey = new SimpleKey(String.valueOf(primaryKey)); } The problem is the SimpleKey is abstract. I

SimpleKey problem in build

2001-02-25 Thread Dave Bryson
This is busting the build: // in BasePeer public void setPrimaryKey(int primaryKey) throws Exception { this.primaryKey = new SimpleKey(String.valueOf(primaryKey)); } The problem is the SimpleKey is abstract. I don't know the intentions here so I don't want to change anything. The

Re: SimpleKey problem in build -Correction

2001-02-25 Thread John McNally
Fixed. Dave Bryson wrote: On Sun, 25 Feb 2001, you wrote: This is busting the build: CORRECTION - this is BaseObject // in BasePeer public void setPrimaryKey(int primaryKey) throws Exception { this.primaryKey = new SimpleKey(String.valueOf(primaryKey)); }