Issue620978

classification
Title: Variable default for Options.caseok
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bckfnn, dnbd24wm
Priority: normal Keywords:

Created on 2002-10-09.19:48:52 by dnbd24wm, last changed 2002-10-11.08:12:32 by bckfnn.

Messages
msg749 (view) Author: ... (dnbd24wm) Date: 2002-10-09.19:48:52
Around line 155 of Options.java in the setFromRegistry() 
method it says:

> Options.caseok =
>     getBooleanOption("options.caseok",
>     Options.pollStandardIn);

This means that the "caseok" option defaults to the 
(variable) pollStandardIn option.  This is a typo (actually 
probably a "cut-and-paste-o"). I think the line should read:

> Options.caseok =
>     getBooleanOption("options.caseok",
>     Options.caseok);
msg750 (view) Author: Finn Bock (bckfnn) Date: 2002-10-11.08:12:32
Logged In: YES 
user_id=4201

Already fixed in rev 2.11 of Options.java.
History
Date User Action Args
2002-10-09 19:48:52dnbd24wmcreate