Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. Сравнение файлов E:\PARCS\DAEMON\Daemon.java и G:\PARCS\DAEMON\DAEMON.JAVA
  2. ***** E:\PARCS\DAEMON\Daemon.java
  3. HashMap hashm = null;
  4. if (point_channels.containsKey(i))
  5. arrl = (ArrayList)point_channels.get(i);
  6. if (point_data.containsKey(i))
  7. ***** G:\PARCS\DAEMON\DAEMON.JAVA
  8. HashMap hashm = null;
  9. if (point_channels.containsKey(i)){
  10. arrl = (ArrayList)point_channels.get(i);
  11. for (Object x : arrl) {
  12. channel chc = (channel)x;
  13. chc.loader = loader;
  14. }
  15. }
  16. if (point_data.containsKey(i))
  17. *****
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement