History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-6693
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Blocker Blocker
Assignee: Andrey Simanovsky
Reporter: Andrey Simanovsky
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

QF for inaccessible base constructor

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

Fixed in build: 251
Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=6693


 Description  « Hide
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}{}
}

 All   Comments   Work Log   Change History      Sort Order:
Andrey Simanovsky - 07 Aug 06 18:39
Re: #6693- QF for inaccessible base constructor
The quickfix changes class acess rights instead of constructor ones!