~ubuntu-branches/ubuntu/wily/monodevelop/wily

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Core/FileService.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-02-02 11:39:59 UTC
  • mfrom: (10.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100202113959-n3u848nfj35yyd03
Tags: 2.2.1+dfsg-1
* New upstream release
* debian/control:
  + Standards version 3.8.4 (no changes needed)
* debian/patches/remove_support_for_non_debian_functionality.patch,
  debian/patches/remove_support_for_soft_debugger.patch,
  debian/patches/remove_support_for_moonlight.patch,
  debian/rules:
  + Split patch into two pieces, to make it easier to enable either
    SDB or Moonlight support with a rebuild
* debian/monodevelop-moonlight.install,
  debian/monodevelop-debugger-sdb.install,
  debian/control:
  + Create packaging data for the Soft Debugger addin and Moonlight addin -
    and comment them out of debian/control as we can't provide them on
    Debian for now

Show diffs side-by-side

added added

removed removed

Lines of Context:
565
565
 
566
566
                public override bool Equals (object obj)
567
567
                {
568
 
                        if (obj == null)
 
568
                        if (obj == null && !(obj is FilePath))
569
569
                                return false;
570
570
 
571
571
                        FilePath fn = (FilePath) obj;
573
573
                }
574
574
 
575
575
                public override int GetHashCode ( )
576
 
                {
 
576
                {
 
577
                        if (fileName == null)
 
578
                                return 0;
577
579
                        if (PropertyService.IsWindows)
578
580
                                return fileName.ToLower ().GetHashCode ();
579
581
                        else