Closed
Bug 14650
Opened 25 years ago
Closed 25 years ago
Bug in NewsRCLine constuctor.
Categories
(Grendel Graveyard :: Protocols, defect, P3)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: Kartchnerk, Assigned: edwin)
Details
What's wrong with this picture?
36 NewsRCLine(NewsRC parent, String group, boolean subbed) {
37 super();
38 rc = parent;
39 subscribed = subbed;
40 }
That's right, group is not stored in the appropriate NewsRCLine field.
36 NewsRCLine(NewsRC parent, String group, boolean subbed) {
37 super();
38 rc = parent;
38.5 group_name = group;
39 subscribed = subbed;
40 }
This bug only makes itself felt if you start out with no news.rc, because in
that case a different constructor is used.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → INVALID
We switched to the dog nntp provider, so we're not using this class anymore.
You need to log in
before you can comment on or make changes to this bug.
Description
•