Skip to content

Commit 0fd7b59

Browse files
committed
Remove variable assignment just before returning it
1 parent 19649cd commit 0fd7b59

File tree

3 files changed

+8
-19
lines changed

3 files changed

+8
-19
lines changed

src/main/java/org/apache/commons/codec/digest/MurmurHash3.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -1069,9 +1069,7 @@ public static long hash64(final byte[] data, final int offset, final int length,
10691069

10701070
// finalization
10711071
hash ^= length;
1072-
hash = fmix64(hash);
1073-
1074-
return hash;
1072+
return fmix64(hash);
10751073
}
10761074

10771075
/**
@@ -1113,8 +1111,7 @@ public static long hash64(final int data) {
11131111
hash ^= k1;
11141112
// finalization
11151113
hash ^= Integer.BYTES;
1116-
hash = fmix64(hash);
1117-
return hash;
1114+
return fmix64(hash);
11181115
}
11191116

11201117
/**
@@ -1158,8 +1155,7 @@ public static long hash64(final long data) {
11581155
hash = Long.rotateLeft(hash, R2) * M + N1;
11591156
// finalization
11601157
hash ^= Long.BYTES;
1161-
hash = fmix64(hash);
1162-
return hash;
1158+
return fmix64(hash);
11631159
}
11641160

11651161
/**
@@ -1204,8 +1200,7 @@ public static long hash64(final short data) {
12041200

12051201
// finalization
12061202
hash ^= Short.BYTES;
1207-
hash = fmix64(hash);
1208-
return hash;
1203+
return fmix64(hash);
12091204
}
12101205

12111206
/**

src/main/java/org/apache/commons/codec/digest/UnixCrypt.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,9 @@ private static int fourBytesToInt(final byte[] b, int offset) {
399399
return value;
400400
}
401401

402-
private static int hPermOp(int a, final int n, final int m) {
402+
private static int hPermOp(final int a, final int n, final int m) {
403403
final int t = (a << 16 - n ^ a) & m;
404-
a = a ^ t ^ t >>> 16 - n;
405-
return a;
404+
return a ^ t ^ t >>> 16 - n;
406405
}
407406

408407
private static void intToFourBytes(final int iValue, final byte[] b, int offset) {

src/main/java/org/apache/commons/codec/language/MatchRatingApproachEncoder.java

+2-7
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ String cleanName(final String name) {
8484
}
8585

8686
upperName = removeAccents(upperName);
87-
upperName = upperName.replaceAll("\\s+", EMPTY);
88-
89-
return upperName;
87+
return upperName.replaceAll("\\s+", EMPTY);
9088
}
9189

9290
/**
@@ -143,10 +141,7 @@ public final String encode(String name) {
143141
// 2. Remove second consonant from any double consonant
144142
name = removeDoubleConsonants(name);
145143

146-
// 3. Reduce codex to 6 letters by joining the first 3 and last 3 letters
147-
name = getFirst3Last3(name);
148-
149-
return name;
144+
return getFirst3Last3(name);
150145
}
151146

152147
/**

0 commit comments

Comments
 (0)