Skip to content

Commit 3e66f8d

Browse files
author
Jinge Wang
committed
Change bytecodeTargetLevel to 1.8. Fix typo in comment.
1 parent f7642a8 commit 3e66f8d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cache/LRUCacheSimple.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ public class LRUCacheSimple {
1919
* Test code.
2020
*
2121
* <p>Invoke as the following order
22-
* {@code [[1,1],[2,2],[1],[3,3],[2],[4,4],[1],[3],[4]]}
22+
* {@code [[1,1],[2,2],[1],[3,3],[2],[4,4],[1],[3],[4]]},
2323
* in which we invoke {@link #put(int, int)}} for number pairs, and {@link #get(int)} for single numbers.</p>
2424
*
25-
* <p>The output should be {@code [1],[-1],[-1],[3],[4]}where {@code -1} indicates a cache miss,
25+
* <p>The output should be {@code [1],[-1],[-1],[3],[4]}, where {@code -1} indicates a cache miss,
2626
* otherwise cache hit.</p>
2727
*/
2828
public static void main(String[] args) {

0 commit comments

Comments
 (0)