Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
See what's new at GitLab
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
A
Anvoker.Maps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
An Ionescu
Anvoker.Maps
Commits
56e12778
Commit
56e12778
authored
Nov 20, 2018
by
An Ionescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing IndexOutOfRange bug due to specifying the wrong array length in ContainsNoExcludedKeys.
parent
36ead619
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Assets/Editor/Anvoker.Collections/Maps/NestedIDictionaryBase.cs
.../Editor/Anvoker.Collections/Maps/NestedIDictionaryBase.cs
+1
-1
No files found.
Assets/Editor/Anvoker.Collections/Maps/NestedIDictionaryBase.cs
View file @
56e12778
...
...
@@ -104,7 +104,7 @@ namespace Anvoker.Collections.Maps.Tests
var
fails
=
new
List
<
TKey
>();
bool
testPassed
=
true
;
for
(
int
i
=
0
;
i
<
initial
Keys
.
Length
;
i
++)
for
(
int
i
=
0
;
i
<
excluded
Keys
.
Length
;
i
++)
{
bool
result
=
collection
.
ContainsKey
(
excludedKeys
[
i
]);
testPassed
|=
!
result
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment