We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80c477 commit ce2c94aCopy full SHA for ce2c94a
Rubberduck.VBEEditor/SafeComWrappers/VBA/Reference.cs
@@ -44,19 +44,15 @@ public string FullPath
44
{
45
get
46
47
- string fullPath;
48
-
49
try
50
51
- fullPath = IsBroken ? string.Empty : Target.FullPath;
+ return IsBroken ? string.Empty : Target.FullPath;
52
}
53
catch (System.Runtime.InteropServices.COMException)
54
55
56
- fullPath = string.Empty;
+ return string.Empty;
57
58
59
- return fullPath;
60
61
62
0 commit comments