Skip to content

Commit d330779

Browse files
committed
Conflict fixes...
1 parent b19eb47 commit d330779

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

External/Plugins/ASCompletion/Completion/ASComplete.cs

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,11 +1236,7 @@ static private bool HandleDeclarationCompletion(ScintillaControl Sci, string tai
12361236
tab = tempIndent + Sci.TabWidth;
12371237
break;
12381238
}
1239-
<<<<<<< HEAD
1240-
if (tempText.Length > 0 && (tempText.EndsWith('}') || IsDeclaration(tempText, features)))
1241-
=======
12421239
if (tempText.Length > 0 && (tempText.EndsWith("}") || CodeUtils.IsDeclaration(tempText, features)))
1243-
>>>>>>> 5aa9cd43e5a9437cfe81c0c61d2285f5024c8f95
12441240
{
12451241
tempIndent = Sci.GetLineIndentation(tempLine);
12461242
tab = tempIndent;
@@ -1265,25 +1261,6 @@ static private bool HandleDeclarationCompletion(ScintillaControl Sci, string tai
12651261
return true;
12661262
}
12671263

1268-
<<<<<<< HEAD
1269-
private static bool IsTypeDecl(string line, string[] typesKeywords)
1270-
{
1271-
foreach (string keyword in typesKeywords)
1272-
if (line.IndexOfOrdinal(keyword) >= 0) return true;
1273-
return false;
1274-
}
1275-
1276-
private static bool IsDeclaration(string line, ContextFeatures features)
1277-
{
1278-
foreach (string keyword in features.accessKeywords)
1279-
if (line.StartsWithOrdinal(keyword)) return true;
1280-
foreach (string keyword in features.declKeywords)
1281-
if (line.StartsWithOrdinal(keyword)) return true;
1282-
return false;
1283-
}
1284-
1285-
=======
1286-
>>>>>>> 5aa9cd43e5a9437cfe81c0c61d2285f5024c8f95
12871264
#endregion
12881265

12891266
#region function_completion

FlashDevelop/Dialogs/UpdateDialog.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
using System.Diagnostics;
88
using System.Windows.Forms;
99
using System.ComponentModel;
10-
using PluginCore;
1110
using PluginCore.Localization;
1211
using PluginCore.Managers;
1312
using PluginCore.Helpers;

0 commit comments

Comments
 (0)