Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Clean up imports
Browse files Browse the repository at this point in the history
Reduce visibility
  • Loading branch information
sfuhrm committed Jan 8, 2024
1 parent 9c72d4b commit c73abdd
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.oneandone.snmpman.configuration;

import com.google.common.primitives.UnsignedLong;
import com.oneandone.snmpman.SnmpmanAgent;
import lombok.extern.slf4j.Slf4j;
import org.snmp4j.smi.Counter32;
import org.snmp4j.smi.Counter64;
Expand All @@ -20,7 +19,6 @@
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.Charset;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
Expand Down Expand Up @@ -78,7 +76,7 @@ public static Map<OID, Variable> readWalk(final File walk) throws IOException {
* @param reader the reader to read the bindings from.
* @return the map of oid to variable binding.
*/
static Map<OID, Variable> readVariableBindings(final File walk, final BufferedReader reader) throws IOException {
private static Map<OID, Variable> readVariableBindings(final File walk, final BufferedReader reader) throws IOException {
final Map<OID, Variable> bindings = new HashMap<>();
OID lastOid = null;
String lastType = null;
Expand Down

0 comments on commit c73abdd

Please sign in to comment.