C#: Change constructor visibility to protected in abstract classes

This commit is contained in:
Tamas Vajk
2020-10-02 11:42:10 +02:00
parent 71faa51270
commit 397be7e98f
10 changed files with 11 additions and 11 deletions

View File

@@ -125,7 +125,7 @@ namespace Semmle.Extraction.CIL
{
public Context cx;
public GenericContext(Context cx)
protected GenericContext(Context cx)
{
this.cx = cx;
}