Skip to content

Commit 35439c7

Browse files
BATIK-1271: Remove unused return value
1 parent ef5b651 commit 35439c7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

batik-gvt/src/main/java/org/apache/batik/gvt/font/AWTGlyphGeometryCache.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,9 @@ public Value get(char c) {
4444

4545
/**
4646
* Sets a new value for the given variable
47-
* @return the old value or null
4847
*/
49-
public Value put(char c, Value value) {
48+
public void put(char c, Value value) {
5049
table.put(c, value);
51-
return value;
5250
}
5351

5452
/**

0 commit comments

Comments
 (0)