Skip to content

Commit 26ff4e7

Browse files
committed
Merge with 1.0
2 parents 8f3f913 + c22ee9f commit 26ff4e7

File tree

236 files changed

+1042
-1194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+1042
-1194
lines changed

driver/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<groupId>org.neo4j.driver</groupId>
1313
<artifactId>neo4j-java-driver-parent</artifactId>
1414
<version>1.0-SNAPSHOT</version>
15+
<relativePath>..</relativePath>
1516
</parent>
1617

1718
<artifactId>neo4j-java-driver</artifactId>

driver/src/main/java/org/neo4j/driver/internal/AsValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

driver/src/main/java/org/neo4j/driver/internal/Identities.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

driver/src/main/java/org/neo4j/driver/internal/InternalEntity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.
@@ -106,7 +106,7 @@ public Iterable<String> keys()
106106
}
107107

108108
@Override
109-
public Value value( String key )
109+
public Value get( String key )
110110
{
111111
Value value = properties.get( key );
112112
return value == null ? Values.NULL : value;

driver/src/main/java/org/neo4j/driver/internal/InternalIdentity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

driver/src/main/java/org/neo4j/driver/internal/InternalNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

driver/src/main/java/org/neo4j/driver/internal/InternalPair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

driver/src/main/java/org/neo4j/driver/internal/InternalPath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

driver/src/main/java/org/neo4j/driver/internal/InternalRecord.java

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.
@@ -75,7 +75,7 @@ public boolean containsKey( String key )
7575
}
7676

7777
@Override
78-
public Value value( String key )
78+
public Value get( String key )
7979
{
8080
Integer fieldIndex = keyIndexLookup.get( key );
8181

@@ -90,7 +90,7 @@ public Value value( String key )
9090
}
9191

9292
@Override
93-
public Value value( int index )
93+
public Value get( int index )
9494
{
9595
return index >= 0 && index < values.length ? values[index] : Values.NULL;
9696
}
@@ -101,12 +101,6 @@ public int size()
101101
return values.length;
102102
}
103103

104-
@Override
105-
public boolean hasRecord()
106-
{
107-
return true;
108-
}
109-
110104
@Override
111105
public Record record()
112106
{
@@ -145,8 +139,8 @@ else if ( other instanceof Record )
145139
}
146140
for ( int i = 0; i < size; i++ )
147141
{
148-
Value value = value( i );
149-
Value otherValue = otherRecord.value( i );
142+
Value value = get( i );
143+
Value otherValue = otherRecord.get( i );
150144
if ( ! value.equals( otherValue ) )
151145
{
152146
return false;

driver/src/main/java/org/neo4j/driver/internal/InternalRecordAccessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2002-2015 "Neo Technology,"
2+
* Copyright (c) 2002-2016 "Neo Technology,"
33
* Network Engine for Objects in Lund AB [http://neotechnology.com]
44
*
55
* This file is part of Neo4j.

0 commit comments

Comments
 (0)