Skip to content

Commit fac0e5e

Browse files
Fix icsharpcode#3489: Make WholeProjectDecompiler.CreateDecompiler protected virtual to make the decompilation pipeline extensible.
1 parent 978c31c commit fac0e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ICSharpCode.Decompiler/CSharp/ProjectDecompiler/WholeProjectDecompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ protected virtual void CreateDirectory(string path)
206206
}
207207
}
208208

209-
CSharpDecompiler CreateDecompiler(DecompilerTypeSystem ts)
209+
protected virtual CSharpDecompiler CreateDecompiler(DecompilerTypeSystem ts)
210210
{
211211
var decompiler = new CSharpDecompiler(ts, Settings);
212212
decompiler.DebugInfoProvider = DebugInfoProvider;

0 commit comments

Comments
 (0)