Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 355429 - Generated Java errors on dateFromGregorian and dateFromJulian
Summary: Generated Java errors on dateFromGregorian and dateFromJulian
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-22 15:33 EDT by broy2 CLA
Modified: 2017-02-23 14:15 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description broy2 CLA 2011-08-22 15:33:18 EDT
Build Identifier: 2011

myDate = dateTimeLib.dateFromGregorian(i);
Causes: The method dateFromGregorian(int) is undefined for the type DateTimeLib	

myDate = dateTimeLib.dateFromJulian(i);
Causess: The method dateFromJulian(int) is undefined for the type DateTimeLib


Reproducible: Always

Steps to Reproduce:
1.myDate string;
2.myDate = dateTimeLib.dateFromGregorian(i);
3.myDate = dateTimeLib.dateFromJulian(i);
Comment 1 Matt Heitz CLA 2011-08-24 22:47:31 EDT
The runtime methods were mistakenly called dateValueFromGregorian and dateValueFromJulian.  I renamed them.
Comment 2 broy2 CLA 2011-08-29 10:51:35 EDT
Verified 20110828