Fix header/impl in LazyClassDescriptor.toString
This commit is contained in:
committed by
Mikhail Glukhikh
parent
956b0aca92
commit
8d8f683042
+1
-1
@@ -527,7 +527,7 @@ public class LazyClassDescriptor extends ClassDescriptorBase implements ClassDes
|
||||
@Override
|
||||
public String toString() {
|
||||
// not using DescriptorRenderer to preserve laziness
|
||||
return (isExpect ? "header " : isActual ? "impl " : "") + "class " + getName().toString();
|
||||
return (isExpect ? "expect " : isActual ? "actual " : "") + "class " + getName().toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user