
|
If you were logged in you would be able to see more operations.
|
|
|
ReSharper
Created: 05 Aug 06 03:10
Updated: 09 Sep 06 13:29
|
|
| Component/s: |
Quick Fixes
|
| Fix Version/s: |
2.0.1
|
|
Security Level:
|
Everybody
(All jira users)
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
|
To do: make base constructor protected/protected internal depending on the situation.
Example:
Before:
class C
{
private C() {}
}
class D : C
{
public D(){caret}{}
}
After:
class C
{
protected C() {}
}
class D : C
{
public D(){caret}{}
}
|
|
Description
|
To do: make base constructor protected/protected internal depending on the situation.
Example:
Before:
class C
{
private C() {}
}
class D : C
{
public D(){caret}{}
}
After:
class C
{
protected C() {}
}
class D : C
{
public D(){caret}{}
} |
Show » |
|
The quickfix changes class acess rights instead of constructor ones!