Change tooltip message for protected static methods from java
This commit is contained in:
@@ -314,7 +314,10 @@ public class DescriptorRendererImpl implements DescriptorRenderer {
|
||||
if ("package".equals(visibility.toString())) {
|
||||
builder.append("public/*package*/ ");
|
||||
}
|
||||
else {
|
||||
else if ("protected_static".equals(visibility.toString())) {
|
||||
builder.append("protected/*protected static*/ ");
|
||||
}
|
||||
else{
|
||||
builder.append(renderKeyword(visibility.toString())).append(" ");
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package test
|
||||
public open class ConstructorInProtectedStaticNestedClass : java.lang.Object {
|
||||
public constructor ConstructorInProtectedStaticNestedClass()
|
||||
|
||||
protected_static open class Inner : java.lang.Object {
|
||||
protected/*protected static*/ open class Inner : java.lang.Object {
|
||||
protected constructor Inner()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user