(FtnAddress routeTo)
| 948 | } |
| 949 | |
| 950 | public static boolean isOurPoint(FtnAddress routeTo) { |
| 951 | boolean ourPoint = false; |
| 952 | for (FtnAddress testAddress : MainHandler.getCurrentInstance() |
| 953 | .getInfo().getAddressList()) { |
| 954 | if (routeTo.isPointOf(testAddress)) { |
| 955 | ourPoint = true; |
| 956 | break; |
| 957 | } |
| 958 | } |
| 959 | return ourPoint; |
| 960 | } |
| 961 | |
| 962 | /** |
| 963 | * Пишем ответ на нетмейл |
no test coverage detected