Browse Source

fix for a previously renamed class

Grant Limberg 10 years ago
parent
commit
29bb2a9004
1 changed files with 2 additions and 2 deletions
  1. 2 2
      java/src/com/zerotierone/sdk/Peer.java

+ 2 - 2
java/src/com/zerotierone/sdk/Peer.java

@@ -41,7 +41,7 @@ public final class Peer {
     private int versionRev;
     private int latency;
     private PeerRole role;
-    private ArrayList<PhysicalPeerPath> paths;
+    private ArrayList<PeerPhysicalPath> paths;
 
     private Peer() {}
 
@@ -104,7 +104,7 @@ public final class Peer {
     /**
      * Known network paths to peer
      */
-    public final ArrayList<PhysicalPeerPath> paths() {
+    public final ArrayList<PeerPhysicalPath> paths() {
         return paths;
     }
 }