Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2016-07-15 08:33:56 +0300
committerJb Evain <jb@evain.net>2016-07-15 08:33:56 +0300
commit4b683559c5ebe462b6df4c18f4211fc7dae15a2d (patch)
treef75df768b33452303968c7755d9a40ce7321c2b4 /Mono.Cecil.PE
parentc2f3653a4f115d4c8523629b7cae9c6757b354f9 (diff)
Rename GetFullyQualifiedName to GetFileName
Diffstat (limited to 'Mono.Cecil.PE')
-rw-r--r--Mono.Cecil.PE/ImageReader.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mono.Cecil.PE/ImageReader.cs b/Mono.Cecil.PE/ImageReader.cs
index 06a864d..b69cc75 100644
--- a/Mono.Cecil.PE/ImageReader.cs
+++ b/Mono.Cecil.PE/ImageReader.cs
@@ -711,7 +711,7 @@ namespace Mono.Cecil.PE {
reader.ReadImage ();
return reader.image;
} catch (EndOfStreamException e) {
- throw new BadImageFormatException (stream.GetFullyQualifiedName (), e);
+ throw new BadImageFormatException (stream.GetFileName (), e);
}
}
@@ -734,7 +734,7 @@ namespace Mono.Cecil.PE {
reader.ReadMetadata ();
return reader.image;
} catch (EndOfStreamException e) {
- throw new BadImageFormatException (stream.GetFullyQualifiedName (), e);
+ throw new BadImageFormatException (stream.GetFileName (), e);
}
}
}