Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 84113fd

Browse filesBrowse files
committed
generic graph add method samll mistake fixed
1 parent 657e198 commit 84113fd
Copy full SHA for 84113fd

3 files changed

+2-4Lines changed: 2 additions & 4 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file
0 Bytes
Binary file not shown.
Collapse file

‎nbproject/private/private.xml‎

Copy file name to clipboardExpand all lines: nbproject/private/private.xml
+1-3Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
33
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
44
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
5-
<group>
6-
<file>file:/C:/Users/nisab/Desktop/Java/JavaApplication5/src/Queues/CircularQueue.java</file>
7-
</group>
5+
<group/>
86
</open-files>
97
</project-private>
Collapse file

‎src/Graphs/GraphGeneric.java‎

Copy file name to clipboardExpand all lines: src/Graphs/GraphGeneric.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void addEdge(T start, T end) {
1616
map.put(start, new ArrayList<>());
1717
return;
1818
}
19-
if (end == null && start != null) {
19+
if (start == null && end != null) {
2020
map.put(end, new ArrayList<>());
2121
return;
2222
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.