Skip to content

Commit

Permalink
Comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JrMasterModelBuilder committed Oct 11, 2023
1 parent 4987d79 commit f1eed5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
18 changes: 2 additions & 16 deletions src/projector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,53 +41,39 @@ export interface IIncludeXtras {
export abstract class Projector {
/**
* Make a Shockwave projector.
*
* @default false
*/
public shockwave: boolean = false;
public shockwave = false;

/**
* Splash image file.
*
* @default null
*/
public splashImageFile: string | null = null;

/**
* Splash image data.
*
* @default null
*/
public splashImageData: Readonly<Buffer> | null = null;

/**
* Lingo file.
*
* @default null
*/
public lingoFile: string | null = null;

/**
* Lingo data.
*
* @default null
*/
public lingoData: Readonly<string[]> | string | Readonly<Buffer> | null =
null;

/**
* Xtras include map.
*
* @default null
*/
public includeXtras: Readonly<IIncludeXtras> | null = null;

/**
* Nest xtras in a Configuration directory.
*
* @default false
*/
public nestXtrasConfiguration: boolean = false;
public nestXtrasConfiguration = false;

/**
* Set the nobrowse option on mounted disk images.
Expand Down
14 changes: 0 additions & 14 deletions src/projector/mac/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,21 @@ import {ProjectorMac} from '../mac';
export class ProjectorMacApp extends ProjectorMac {
/**
* Binary name.
*
* @default null
*/
public binaryName: string | null = null;

/**
* Intel binary package, not universal binary.
*
* @default false
*/
public intel = false;

/**
* Icon file.
*
* @default null
*/
public iconFile: string | null = null;

/**
* Icon data.
*
* @default null
*/
public iconData: Readonly<Buffer> | null = null;

Expand All @@ -61,15 +53,11 @@ export class ProjectorMacApp extends ProjectorMac {

/**
* PkgInfo file.
*
* @default null
*/
public pkgInfoFile: string | null = null;

/**
* PkgInfo data.
*
* @default null
*/
public pkgInfoData: string | Readonly<Buffer> | null = null;

Expand All @@ -85,8 +73,6 @@ export class ProjectorMacApp extends ProjectorMac {

/**
* Nest Xtras at *.app/Contents/xtras.
*
* @default false
*/
public nestXtrasContents = false;

Expand Down

0 comments on commit f1eed5e

Please sign in to comment.