RemboL opened a new pull request #189:
URL: https://github.com/apache/poi/pull/189


   Recently I implemented DateValue function that would parse dates in 
different formats.
   
   Since then, I noticed that there are other functions (YEARFRAC, in 
particular) that use date parsing logic and that they are using a class 
DateParser. This brought my attention, because DateParser is unable to parse 
dates in other formats, like 'yyyy-MM-dd'.
   
   I think it would make sense to use the same logic for date parsing in all 
places, so I moved my code from DateValue function to DateParser. Since both 
DateParser and DateValue tests are still green without any changes, I think 
this refactor is valid.
   
   I also moved DateParser from atp package to util, since it is used outside 
atp now - although I see that it might raise some flags, since it is a public 
class and theoretically it might break compatibility for other projects that 
might be using DateParser - please advice, whether it is acceptable to move 
this class or should it be left in current package.
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to