浏览代码

Clean up the modelfactory

Steven Silvester 8 年之前
父节点
当前提交
fd02fe4aae
共有 1 个文件被更改,包括 0 次插入8 次删除
  1. 0 8
      src/notebook/notebook/modelfactory.ts

+ 0 - 8
src/notebook/notebook/modelfactory.ts

@@ -21,9 +21,6 @@ export
 class NotebookModelFactory implements DocumentRegistry.IModelFactory<INotebookModel> {
   /**
    * The name of the model.
-   *
-   * #### Notes
-   * This is a read-only property.
    */
   get name(): string {
     return 'notebook';
@@ -31,9 +28,6 @@ class NotebookModelFactory implements DocumentRegistry.IModelFactory<INotebookMo
 
   /**
    * The content type of the file.
-   *
-   * #### Notes
-   * This is a read-only property.
    */
   get contentType(): Contents.ContentType {
     return 'notebook';
@@ -41,8 +35,6 @@ class NotebookModelFactory implements DocumentRegistry.IModelFactory<INotebookMo
 
   /**
    * The format of the file.
-   *
-   * This is a read-only property.
    */
   get fileFormat(): Contents.FileFormat {
     return 'json';