Skip to content

Commit cc706f6

Browse files
committed
Fix styling
1 parent a088373 commit cc706f6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/services/ios-debug-service.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import semver = require("semver");
1212
import temp = require("temp");
1313
import byline = require("byline");
1414

15-
1615
module notification {
1716
function formatNotification(bundleId: string, notification: string) {
1817
return `${bundleId}:NativeScript.Debug.${notification}`;
@@ -125,15 +124,15 @@ class IOSDebugService implements IDebugService {
125124

126125
lineStream.on('data', (line: NodeBuffer) => {
127126
let lineText = line.toString();
128-
if(lineText && _.startsWith(lineText, emulatorPackage.packageName)) {
127+
if(lineText && _.startsWith(lineText, emulatorPackage.packageName)) {
129128
let pid = _.trimLeft(lineText, emulatorPackage.packageName + ": ");
130-
129+
131130
this.$childProcess.exec(`lldb -p ${pid} -o "process continue"`);
132131
} else {
133132
process.stdout.write(line + "\n");
134133
}
135134
});
136-
135+
137136
this.wireDebuggerClient(() => net.connect(InspectorBackendPort)).wait();
138137
}).future<void>()();
139138
}

0 commit comments

Comments
 (0)