Skip to content

Commit 404c7e8

Browse files
committed
Fix formatting
1 parent 2af6521 commit 404c7e8

7 files changed

Lines changed: 3 additions & 10 deletions

File tree

neo4j/record.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ type Record interface {
2626
Values() []interface{}
2727
Get(key string) (interface{}, bool)
2828
GetByIndex(index int) interface{}
29-
}
29+
}

neo4j/session.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ type Session interface {
2727
Run(cypher string, params map[string]interface{}, configurers ...func(*TransactionConfig)) (Result, error)
2828
Close() error
2929
}
30-

neo4j/statement.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ package neo4j
2222
type Statement interface {
2323
Cypher() string
2424
Params() map[string]interface{}
25-
}
25+
}

neo4j/summary_counters.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
package neo4j
2121

22-
2322
// Counters contains statistics about the changes made to the database made as part
2423
// of the statement execution.
2524
type Counters interface {
@@ -36,7 +35,6 @@ type Counters interface {
3635
ConstraintsRemoved() int
3736
}
3837

39-
4038
type neoCounters struct {
4139
nodesCreated int
4240
nodesDeleted int
@@ -94,4 +92,3 @@ func (counters *neoCounters) ConstraintsAdded() int {
9492
func (counters *neoCounters) ConstraintsRemoved() int {
9593
return counters.constraintsRemoved
9694
}
97-

neo4j/summary_plan.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,3 @@ func (plan *neoPlan) Identifiers() []string {
4949
func (plan *neoPlan) Children() []Plan {
5050
return plan.children
5151
}
52-

neo4j/summary_profiled_plan.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,3 @@ func (plan *neoProfiledPlan) Records() int64 {
6161
func (plan *neoProfiledPlan) Children() []ProfiledPlan {
6262
return plan.children
6363
}
64-

neo4j/test-integration/examples_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ func createDriverWithoutEncryption(uri, username, password string) (neo4j.Driver
173173

174174
// end::config-unencrypted[]
175175

176-
177176
// tag::config-trust[]
178177

179178
// end::config-trust[]
@@ -220,4 +219,4 @@ func createDriverWithoutEncryption(uri, username, password string) (neo4j.Driver
220219

221220
// tag::result-retain[]
222221

223-
// end::result-retain[]
222+
// end::result-retain[]

0 commit comments

Comments
 (0)