Skip to content

Commit d2679f2

Browse files
committed
Update README.md.
1 parent 4785ab5 commit d2679f2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Maven Central](https://img.shields.io/maven-central/v/org.httprpc/httprpc.svg)](http://repo1.maven.org/maven2/org/httprpc/httprpc/)
33

44
# Introduction
5-
HTTP-RPC is an open-source framework for implementing and interacting with RESTful and REST-like web services in Java. It is extremely lightweight and requires only a Java runtime environment and a servlet container. The entire framework is distributed as a single JAR file that is about 66KB in size, making it an ideal choice for applications where a minimal footprint is desired.
5+
HTTP-RPC is an open-source framework for implementing and interacting with RESTful and REST-like web services in Java. It is extremely lightweight and requires only a Java runtime environment and a servlet container. The entire framework is distributed as a single JAR file that is about 68KB in size, making it an ideal choice for applications where a minimal footprint is desired.
66

77
This guide introduces the HTTP-RPC framework and provides an overview of its key features.
88

httprpc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
}
2121

2222
group = 'org.httprpc'
23-
version = '5.9.2'
23+
version = '5.9.3'
2424

2525
repositories {
2626
mavenCentral()

httprpc/src/main/java/org/httprpc/io/CSVDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public Cursor(Reader reader, char delimiter) throws IOException {
8888
decodeValues(reader, keys, delimiter);
8989
}
9090

91-
public void decodeValues(Reader reader, ArrayList<String> values, char delimiter) throws IOException {
91+
private void decodeValues(Reader reader, ArrayList<String> values, char delimiter) throws IOException {
9292
int c = reader.read();
9393

9494
while (c != '\r' && c != '\n' && c != EOF) {

0 commit comments

Comments
 (0)