
| Key: |
UP-907
|
| Type: |
Bug
|
| Status: |
Open
|
| Priority: |
Trivial
|
| Assignee: |
Unassigned
|
| Reporter: |
Brad Johnson
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
uPortal
Created: 31/Mar/05 10:38 AM
Updated: 05/Aug/08 02:44 PM
|
|
| Component/s: |
None
|
| Affects Version/s: |
2.4,
2.4.1,
2.4.2,
2.5.0 M1,
2.6.0 M1,
2.5.1 RC1,
2.5.0 RC1,
2.5.0 RC3,
2.5.0 RC2,
2.5.0 GA,
2.5.1 RC2,
2.5.2 RC1,
2.5.1 RC3,
2.5.1 GA,
2.5.3 RC1,
2.5.2 GA,
2.5.3 RC2,
2.5.3 RC3,
2.5.3 GA,
2.6.0 RC1,
2.6.0 RC2,
2.6.0 GA,
2.6.1 RC1,
2.6.1 RC2
|
| Fix Version/s: |
3.1.0
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
Issue Links:
|
Generic Relation
|
|
This issue relates to:
|
|
UP-910
Use protected instance for Log rather...
|
|
|
|
|
|
|
|
Where we declare static Log instances, they should be all caps:
private static final Log log = LogFactory.getLog(UserLayoutStoreFactory.class);
should be:
private static final Log LOG = LogFactory.getLog(UserLayoutStoreFactory.class);
|
|
Description
|
Where we declare static Log instances, they should be all caps:
private static final Log log = LogFactory.getLog(UserLayoutStoreFactory.class);
should be:
private static final Log LOG = LogFactory.getLog(UserLayoutStoreFactory.class);
|
Show » |
|