Simplify a couple of getters in the mesh debugger

This commit is contained in:
Patrick Walton 2017-09-11 11:22:06 -07:00
parent 5eec2c5b6f
commit bd3536d058
1 changed files with 2 additions and 7 deletions

View File

@ -54,13 +54,8 @@ class MeshDebuggerAppController extends AppController {
})
}
protected get defaultFile(): string {
return FONT;
}
protected get builtinFileURI(): string {
return BUILTIN_FONT_URI;
}
protected readonly defaultFile: string = FONT;
protected readonly builtinFileURI: string = BUILTIN_FONT_URI;
glyphStorage: GlyphStorage<MeshDebuggerGlyph>;
meshes: PathfinderMeshData;