- Timestamp:
- 06/21/12 18:02:33 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 20 20 bin 21 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.CodeEditor/3.3/CodeCompletionProvider.cs
r4068 r8085 92 92 List<ICompletionData> resultList = new List<ICompletionData>(); 93 93 if (rr != null) { 94 ArrayList completionData = rr.GetCompletionData(codeEditor.projectContent); 95 if (completionData != null) { 96 AddCompletionData(resultList, completionData); 97 } 94 try { 95 ArrayList completionData = rr.GetCompletionData(codeEditor.projectContent); 96 if (completionData != null) { 97 AddCompletionData(resultList, completionData); 98 } 99 } catch (NullReferenceException x) { } 98 100 } 99 101 return resultList.ToArray();
Note: See TracChangeset
for help on using the changeset viewer.