Skip to content

Commit

Permalink
Styleguide updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rschwietzke committed Jan 27, 2024
1 parent 84d4c24 commit 9208d7b
Show file tree
Hide file tree
Showing 3 changed files with 734 additions and 644 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/htmlunit/util/OrderedFastHashMap.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2023 Gargoyle Software Inc.
* Copyright (c) 2002-2024 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,6 +14,7 @@
*/
package org.htmlunit.util;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
Expand Down Expand Up @@ -54,7 +55,7 @@
*
* @author René Schwietzke
*/
public class OrderedFastHashMap<K, V> implements Map<K, V> {
public class OrderedFastHashMap<K, V> implements Map<K, V>, Serializable {
// our placeholders in the map
private static Object FREE_KEY_ = null;
private static Object REMOVED_KEY_ = new Object();
Expand Down
Loading

0 comments on commit 9208d7b

Please sign in to comment.