Skip to content

Commit 3353d1d

Browse files
committed
[ci] Fix formatting differences
1 parent 63f7978 commit 3353d1d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

src/main/java/org/mybatis/caches/memcached/MemcachedClientWrapper.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,9 @@ private void storeInMemcached(String keyString, Object value) {
306306
}
307307

308308
/**
309-
* Tries to update an object value in memcached considering the cas validation Returns true if the object passed the
310-
* cas validation and was modified.
309+
* Tries to update an object value in memcached considering the cas validation.
310+
* <p>
311+
* Returns true if the object passed the cas validation and was modified.
311312
*
312313
* @param keyString
313314
* @param value
@@ -333,7 +334,9 @@ private boolean storeInMemcached(String keyString, ObjectWithCas value) {
333334
}
334335

335336
/**
336-
* Tries to store an object identified by a key in Memcached. Will fail if the object already exists.
337+
* Tries to store an object identified by a key in Memcached.
338+
* <p>
339+
* Will fail if the object already exists.
337340
*
338341
* @param keyString
339342
* @param value

src/test/java/org/mybatis/caches/memcached/MemcachedTestCase.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
import org.junit.jupiter.api.Test;
2929

3030
/**
31-
* HOW TO RUN THE TEST Install memcached:
31+
* HOW TO RUN THE TEST
32+
* <p>
33+
* Install memcached:
3234
* <ul>
3335
* <li>on ubuntu: open the shell and type <code>sudo apt-get install memcached</code></li>
3436
* <li>on mac os x: open the terminal and type <code>sudo port install memcached</code></li>

0 commit comments

Comments
 (0)