2007-02-06 Thomas Van Machelen <thomas.vanmachelen@gmail.com>

* src/Mono.Upcoming/Event.cs: more cleanup

svn path=/trunk/upcoming-sharp/; revision=72344
This commit is contained in:
Thomas Van Machelen 2007-02-06 06:45:54 +00:00
Родитель d2949be44a
Коммит 737b19abf4
2 изменённых файлов: 7 добавлений и 9 удалений

Просмотреть файл

@ -1,4 +1,7 @@
2007-01-32 Thomas Van Machelen <thomas.vanmachelen@gmail.com>
2007-02-06 Thomas Van Machelen <thomas.vanmachelen@gmail.com>
* src/Mono.Upcoming/Event.cs: more cleanup
2007-01-31 Thomas Van Machelen <thomas.vanmachelen@gmail.com>
* src/Mono.Upcoming/Event.cs:
* src/Mono.Upcoming/Group.cs:
* src/Mono.Upcoming/Venue.cs: remove some unnecessary code

Просмотреть файл

@ -23,8 +23,7 @@ namespace Mono.Upcoming
public System.DateTime StartDate
{
get {
try
{
try {
return System.DateTime.Parse (start_date);
}
catch
@ -42,8 +41,7 @@ namespace Mono.Upcoming
{
get
{
try
{
try {
return System.DateTime.Parse (end_date);
}
catch
@ -118,10 +116,7 @@ namespace Mono.Upcoming
public bool GeocodingAmbiguous {
get {
if (geocoding_ambiguous == "1")
return true;
else
return false;
return geocoding_ambiguous == "1";
}
}