Skip to content

Commit 24729f2

Browse files
committed
Remove broken readme links.
1 parent 47e0ce2 commit 24729f2

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JSON Iterator [![Build](https://github.com/comodal/json-iterator/workflows/Gradle%20Check/badge.svg)](https://github.com/comodal/json-iterator/actions)
1+
# JSON Iterator [![Build](https://github.com/sava-software/json-iterator/workflows/Gradle%20Check/badge.svg)](https://github.com/sava-software/json-iterator/actions)
22

33
JSON Iterator is a minimal adaption of the [stream parsing features](http://jsoniter.com/java-features.html#iterator-to-rescue) from the project [json-iterator/java](https://github.com/json-iterator/java).
44

@@ -8,21 +8,13 @@ Parsing supports String, byte[], char[] and InputStream data sources.
88

99
## Basic Usage
1010

11-
See [JsonIterator.java](systems.comodal.json_iterator/src/main/java/systems/comodal/jsoniter/JsonIterator.java) for the public interface.
11+
See [JsonIterator.java](json_iterator/src/main/java/systems/comodal/jsoniter/JsonIterator.java) for the public interface.
1212

1313
```java
1414
var jsonIterator = JsonIterator.parse("{\"hello\": \"world\"}");
1515
System.out.println(jsonIterator.readObjField() + ' ' + jsonIterator.readString());
1616
```
1717

18-
## Recommended Usage
19-
20-
If the presence and ordering of the JSON object fields are guaranteed to always be the same, follow the [`StaticFieldOrdering`](systems.comodal.json_iterator/src/jmh/java/systems/comodal/jsoniter/jmh/styles/StaticFieldOrdering.java#L19) style and simply skip over object field entries.
21-
22-
Otherwise, follow the [`IocLoopCompareStringFieldToCharsIf`](systems.comodal.json_iterator/src/jmh/java/systems/comodal/jsoniter/jmh/styles/IocLoopCompareStringFieldToCharsIf.java#L22) style, which enables inversion of control while it iterates over object fields in conjunction with comparing expected field strings against a field character array. The advantage of this strategy is that it avoids constructing Strings for object fields.
23-
24-
If the first character for all of an objects' fields are unique, follow either the [`IocLoopCharIf`](systems.comodal.json_iterator/src/jmh/java/systems/comodal/jsoniter/jmh/styles/IocLoopCharIf.java#L20) or [`IocLoopCharSwitch`](systems.comodal.json_iterator/src/jmh/java/systems/comodal/jsoniter/jmh/styles/IocLoopCharSwitch.java#L20) style. Similar to the style `IocLoopCompareStringFieldToCharsIf`, these styles avoid constructing Strings for object fields.
25-
2618
## Build
2719

2820
[Generate a classic token](https://github.com/settings/tokens) with the `read:packages` scope needed to access

0 commit comments

Comments
 (0)