Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
nmarulo authored Oct 25, 2024
1 parent b2f3b1b commit ad6a4b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/dev/nmarulo/depensaapp/ServletInitializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class ServletInitializer extends SpringBootServletInitializer {

@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
Integer.valueOf(3).compareTo(2)
new Integer(3).compareTo(2)
Integer.valueOf(3).compareTo(2);
new Integer(3).compareTo(2);
HashMap<URL, Integer> hits = new HashMap<>();
for (HashMap.Entry<URL, Integer> e : hits) {
// ... This can become very slow for larger hashmaps of URLS.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public <R> R convertTo(Object object, Class<?> clazz) {
return fromJsonTo(json, TypeToken.getParameterized(List.class, clazz));
}

Integer.valueOf(3).compareTo(2)
new Integer(3).compareTo(2)
Integer.valueOf(3).compareTo(2);
new Integer(3).compareTo(2);
HashMap<URL, Integer> hits = new HashMap<>();
for (HashMap.Entry<URL, Integer> e : hits) {
// ... This can become very slow for larger hashmaps of URLS.
Expand Down

0 comments on commit ad6a4b8

Please sign in to comment.