Skip to content

Commit cbb1d29

Browse files
committed
Update documentation.
1 parent f1973e9 commit cbb1d29

File tree

5 files changed

+1
-38
lines changed

5 files changed

+1
-38
lines changed

kilo-client/src/main/java/org/httprpc/kilo/beans/BeanAdapter.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -430,10 +430,6 @@ public Object getBean() {
430430
return bean;
431431
}
432432

433-
/**
434-
* Gets a property value.
435-
* {@inheritDoc}
436-
*/
437433
@Override
438434
public Object get(Object key) {
439435
if (key == null) {
@@ -460,10 +456,6 @@ public Object get(Object key) {
460456
return adapt(value);
461457
}
462458

463-
/**
464-
* Sets a property value.
465-
* {@inheritDoc}
466-
*/
467459
@Override
468460
public Object put(String key, Object value) {
469461
if (key == null) {
@@ -489,19 +481,11 @@ public Object put(String key, Object value) {
489481
return null;
490482
}
491483

492-
/**
493-
* Tests for the existence of a property.
494-
* {@inheritDoc}
495-
*/
496484
@Override
497485
public boolean containsKey(Object key) {
498486
return properties.containsKey(key);
499487
}
500488

501-
/**
502-
* Enumerates property values.
503-
* {@inheritDoc}
504-
*/
505489
@Override
506490
public Set<Entry<String, Object>> entrySet() {
507491
return new AbstractSet<>() {

kilo-client/src/main/java/org/httprpc/kilo/sql/ResultSetAdapter.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,11 @@ public ResultSet getResultSet() {
113113
return resultSet;
114114
}
115115

116-
/**
117-
* Returns an iterator over the results.
118-
* {@inheritDoc}
119-
*/
120116
@Override
121117
public Iterator<Map<String, Object>> iterator() {
122118
return iterator;
123119
}
124120

125-
/**
126-
* Closes the result set.
127-
* {@inheritDoc}
128-
*/
129121
@Override
130122
public void close() throws SQLException {
131123
resultSet.close();

kilo-client/src/main/java/org/httprpc/kilo/util/concurrent/Pipe.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ public Pipe(int capacity, int timeout) {
123123

124124
/**
125125
* Submits elements to the pipe.
126-
* {@inheritDoc}
127126
*/
128127
@Override
129128
public void accept(Stream<? extends E> stream) {
@@ -156,10 +155,6 @@ private void submit(Object value) {
156155
}
157156
}
158157

159-
/**
160-
* Returns an iterator over the contents of the pipe.
161-
* {@inheritDoc}
162-
*/
163158
@Override
164159
public Iterator<E> iterator() {
165160
return iterator;

kilo-client/src/main/java/org/httprpc/kilo/xml/ElementAdapter.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ public Element getElement() {
102102
* <li>Otherwise, an adapter for the last matching sub-element (if any)
103103
* will be returned.</li>
104104
* </ul>
105-
*
106-
* {@inheritDoc}
107105
*/
108106
@Override
109107
public Object get(Object key) {
@@ -160,8 +158,6 @@ private Object get(String key) {
160158
* based on the map's contents. For all other types, the element's text
161159
* content will be set to the string representation of the provided
162160
* value.</p>
163-
*
164-
* {@inheritDoc}
165161
*/
166162
@Override
167163
public Object put(String key, Object value) {
@@ -226,8 +222,6 @@ private void appendElement(String tagName, Object value) {
226222
* </ul>
227223
*
228224
* <p>Self reference and multi-element keys are not supported.</p>
229-
*
230-
* {@inheritDoc}
231225
*/
232226
@Override
233227
public Object remove(Object key) {
@@ -260,7 +254,6 @@ private void remove(String key) {
260254

261255
/**
262256
* Determines if the source element contains a given key.
263-
* {@inheritDoc}
264257
*/
265258
@Override
266259
public boolean containsKey(Object key) {
@@ -283,7 +276,6 @@ private boolean containsKey(String key) {
283276

284277
/**
285278
* Throws {@link UnsupportedOperationException}.
286-
* {@inheritDoc}
287279
*/
288280
@Override
289281
public Set<Entry<String, Object>> entrySet() {
@@ -292,7 +284,6 @@ public Set<Entry<String, Object>> entrySet() {
292284

293285
/**
294286
* Returns the text content of the element.
295-
* {@inheritDoc}
296287
*/
297288
@Override
298289
public String toString() {

kilo-test/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies {
2020
compileOnly "jakarta.servlet:jakarta.servlet-api:${servletAPIVersion}"
2121

2222
implementation project(':kilo-server')
23+
2324
implementation "org.mariadb.jdbc:mariadb-java-client:${connectorJVersion}"
2425
implementation 'org.hibernate.orm:hibernate-core:6.6.23.Final'
2526

0 commit comments

Comments
 (0)