com.packtpub.e4
com.packtpub.e4 copied to clipboard
Code samples for the "Eclipse Plugin Development by Example: Beginners Guide" book 978-1782160328
Results
1
com.packtpub.e4 issues
Sort by
recently updated
recently updated
newest added
In TimeZoneLabelProvider#getStyledText, the offset calculation should be like this: int offset = ((TimeZone) element).getOffset(System.currentTimeMillis()); rather than: int offset = -((TimeZone) element).getOffset(0); since this is also how the offset is calculated...