#393 closed defect (fixed)
Typo in Base1PluginExecuter
Reported by: | Johan Enell | Owned by: | Johan Enell |
---|---|---|---|
Priority: | trivial | Milestone: | BASE 2.1 |
Component: | coreplugins | Version: | trunk |
Keywords: | Cc: |
Description
Typo in src/plugins/core/net/sf/basedb/plugins/Base1PluginExecuter.java on line 1234, causing the plugin to crash when exporting raw data field 'BCh2Median' to a BASE 1 plugin. To fix the bug, replace the following line:
base1columns.put("BCh2Median", Selects.expression(Dynamic.rawData("BCh2Median"), "BCh2Median"));
with
base1columns.put("BCh2Median", Selects.expression(Dynamic.rawData("ch2BgMedian"), "BCh2Median"));
Change History (3)
comment:1 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 18 years ago
Milestone: | BASE 2.2 → BASE 2.0.2 |
---|
comment:3 by , 18 years ago
Milestone: | BASE 2.0.2 → BASE 2.1 |
---|
Note:
See TracTickets
for help on using tickets.
(In [2727]) Fixed typo in getBase1Columns fixes #393