AppCode:Debugger: do not show internal file types in UI (OC-3943)

This commit is contained in:
Anton Makeev
2012-07-11 11:16:15 +02:00
parent d648bb0e80
commit 4adea567a6
@@ -54,6 +54,13 @@ public abstract class LanguageFileType implements FileType{
@Override
public final boolean isReadOnly() {
return isSystem();
}
/**
* System file types cannot be editor and are not shown in the interface
*/
protected boolean isSystem() {
return false;
}