Skip to content

Commit

Permalink
remove debug output and remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
trestoa committed Oct 24, 2017
1 parent fdad34b commit 47a6af9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/app/auth-guard.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, OnInit} from "@angular/core";
import {Component} from "@angular/core";
import JsonApiDocumentBuilder from "../../server/jsonapi/JsonApiBuilder";
import {AuthProvider} from "./auth-provider.service";
import {ConfigurationService} from "./util/configuration-service";
Expand Down
1 change: 0 additions & 1 deletion src/server/api/resource/versioncontrol/ProgramResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export default class ProgramResource extends ApiResource {
let attributes = (document.data as JsonApiResource).attributes;
let program: Program;
try {
console.log(attributes.copyFrom);
program = await this.programStorage.createProgram(attributes.name, attributes.copyFrom);
} catch(err) {
winston.error(err);
Expand Down

0 comments on commit 47a6af9

Please sign in to comment.