Skip to content

Commit b5eee05

Browse files
committed
Fix http headers
1 parent 4eb8f08 commit b5eee05

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/java/org/springframework/data/elasticsearch/utils/geohash/BitUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class BitUtil { // magic numbers for bit interleaving
3030

3131
/**
3232
* Interleaves the first 32 bits of each long value Adapted from:
33-
* http://graphics.stanford.edu/~seander/bithacks.html#InterleaveBMN
33+
* https://graphics.stanford.edu/~seander/bithacks.html#InterleaveBMN
3434
*/
3535
public static long interleave(int even, int odd) {
3636
long v1 = 0x00000000FFFFFFFFL & even;

src/test/resources/log4j2.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<Configuration strict="true"
3-
xmlns="http://logging.apache.org/log4j/2.0/config"
4-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://logging.apache.org/log4j/2.0/config
3+
xmlns="https://logging.apache.org/log4j/2.0/config"
4+
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="https://logging.apache.org/log4j/2.0/config
66
https://raw.githubusercontent.com/apache/logging-log4j2/log4j-2.11.1/log4j-core/src/main/resources/Log4j-config.xsd">
77
<Appenders>
88
<Console name="console" target="SYSTEM_OUT">

0 commit comments

Comments
 (0)