Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 03b4cad

Browse files
committed
Merging correctly conflicts
1 parent 400198b commit 03b4cad

File tree

3 files changed

+0
-17
lines changed

3 files changed

+0
-17
lines changed

packages/luis/src/parser/converters/lumerger.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,13 @@ const luisJSON = require('./../luisfile/parseLuisFile');
1616

1717
module.exports = {
1818
mergeAndResolveReferences: async function (luObjArray, verbose, luis_culture, luSearchFn){
19-
<<<<<<< HEAD
20-
let allParsedContent = await buildJsonObject(luObjArray, verbose, luis_culture, luSearchFn)
21-
=======
2219
let allParsedContent = await buildLuJsonObject(luObjArray, verbose, luis_culture, luSearchFn)
23-
>>>>>>> master
2420
await resolveReferencesInUtterances(allParsedContent)
2521
return allParsedContent
2622
}
2723
}
2824

29-
<<<<<<< HEAD
30-
const buildJsonObject = async function(luObjArray, log, luis_culture, luSearchFn = findLuFilesInDir){
31-
=======
3225
const buildLuJsonObject = async function(luObjArray, log, luis_culture, luSearchFn = findLuFilesInDir){
33-
>>>>>>> master
3426
let allParsedLUISContent = []
3527
let allParsedQnAContent = []
3628
let allParsedAlterationsContent = []

packages/luis/src/parser/converters/lutoluisconverter.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,11 @@ const LUISObjNameEnum = require('./../lufile/enums/luisobjenum')
88

99
module.exports = {
1010
/**
11-
<<<<<<< HEAD
12-
* Parses a list of luObject into a LUIS JSON
13-
* @param {luObject []} luArray luObject list to be parsed
14-
=======
1511
* Parses a list of luObject to a LUIS JSON
1612
* @param {luObject []} luArray luObject list to be parsed
1713
* @param {boolean} verbose verbose logging
1814
* @param {string} luis_culture luis culture
1915
* @param {function} luSearchFn function to search for lu references: function search(source: string, additionalFilesToParse: Array<string>): Array<luObject>
20-
>>>>>>> master
2116
* @returns {LUIS} Collated LUIS json contents
2217
* @throws {exception} Throws on errors. exception object includes errCode and text.
2318
*/

packages/luis/src/parser/luisfile/parseLuisFile.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ module.exports = {
1010
try {
1111
LUISJSON = await JSON.parse(LUISFileContent);
1212
} catch (err) {
13-
<<<<<<< HEAD
14-
throw (new exception(retCode.errorCode.INVALID_INPUT_FILE, 'Sorry, error parsing file as LUIS JSON'));
15-
=======
1613
throw (new exception(retCode.errorCode.INVALID_INPUT_FILE, 'Sorry, error parsing content as LUIS JSON'));
17-
>>>>>>> master
1814
}
1915
await validateLUISJSON(LUISJSON)
2016
return LUISJSON;

0 commit comments

Comments
 (0)