Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0036436 | Openbravo ERP | 09. Financial management | public | 2017-07-06 13:35 | 2017-09-21 16:49 |
|
Reporter | shuehner | |
Assigned To | Triage Omni OMS | |
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR17Q4 | |
Merge Request Status | |
Review Assigned To | vmromanos |
OBNetwork customer | No |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0036436: Avoid using Vector<Object> when only single type of data is used in the list (functional part) |
Description | Vector<Object> or any other of Object only make sense when planning to save several types of data inside the list.
When only stores i.e. Strings or objects of some other single class it does not make sense to use Vector<Object>:
- as no benefit
- harder to read + debug
- need extra casts when retrieving data
So this issue is about fixing simple cases which break this.
Note: Cases are selected as:
a.) simply fixable
b.) causing issues in latest release of some external code-checking tool (checkerframework) |
Steps To Reproduce | - |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | related to | defect | 0036437 | | closed | shuehner | Avoid using Vector<Object> when only single type of data is used in the list (platform part) |
|
Attached Files | vector-object-functional.diff (20,344) 2017-07-06 13:39 https://issues.openbravo.com/file_download.php?file_id=10896&type=bug |
|
Issue History |
Date Modified | Username | Field | Change |
2017-07-06 13:35 | shuehner | New Issue | |
2017-07-06 13:35 | shuehner | Assigned To | => Triage Finance |
2017-07-06 13:35 | shuehner | OBNetwork customer | => No |
2017-07-06 13:35 | shuehner | Modules | => Core |
2017-07-06 13:35 | shuehner | Triggers an Emergency Pack | => No |
2017-07-06 13:39 | shuehner | File Added: vector-object-functional.diff | |
2017-07-06 13:39 | shuehner | Note Added: 0097910 | |
2017-07-06 13:44 | shuehner | Relationship added | related to 0036437 |
2017-07-07 10:38 | vmromanos | Status | new => scheduled |
2017-07-07 14:03 | hgbot | Checkin | |
2017-07-07 14:03 | hgbot | Note Added: 0097954 | |
2017-07-07 14:03 | hgbot | Status | scheduled => resolved |
2017-07-07 14:03 | hgbot | Resolution | open => fixed |
2017-07-07 14:03 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/b4290824ae054a573ce184ec5afc6f71871f609f [^] |
2017-07-07 14:03 | vmromanos | Review Assigned To | => vmromanos |
2017-07-07 14:03 | vmromanos | Note Added: 0097956 | |
2017-07-07 14:03 | vmromanos | Status | resolved => closed |
2017-07-07 14:03 | vmromanos | Fixed in Version | => 3.0PR17Q4 |
2017-09-21 16:49 | hudsonbot | Checkin | |
2017-09-21 16:49 | hudsonbot | Note Added: 0099250 | |
Notes |
|
|
Note: Patch is only compile tested locally.
While all changes are very simple please verify.
Note: I used diamond operator (available since java7) when changing types to simplify code. |
|
|
(0097954)
|
hgbot
|
2017-07-07 14:03
|
|
Repository: erp/devel/pi
Changeset: b4290824ae054a573ce184ec5afc6f71871f609f
Author: Víctor Martínez Romanos <victor.martinez <at> openbravo.com>
Date: Fri Jul 07 10:43:24 2017 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/b4290824ae054a573ce184ec5afc6f71871f609f [^]
Fixed issue 36436: Avoid using Vector<Object> for single type of data
Changeset pushed on Stefan's behalf
---
M modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.java
M src/org/openbravo/erpCommon/ad_process/CreateTaxReport.java
M src/org/openbravo/erpCommon/ad_reports/ReportTrialBalance.java
M src/org/openbravo/erpCommon/businessUtility/AccountTree.java
M src/org/openbravo/erpCommon/businessUtility/COAUtility.java
---
|
|
|
|
|
|
|
|