Changeset 290:3e069d9c3cb4 in finroc_tools_finstruct-java
- Timestamp:
- 22.06.2020 12:14:29 (8 months ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FinstructConnectionPanel.java
r286 r290 487 487 ParameterInfo pi = (ParameterInfo)remotePort.getAnnotation(ParameterInfo.TYPE); 488 488 if (pi != null && pi.getConfigEntry().equals(path) && ConfigFileModel.findConfigFile(remotePort) == ConfigFileModel.findConfigFile(currentRoot)) { 489 pi.setConfigEntry("");490 489 RemoteRuntime rr = RemoteRuntime.find(remotePort); 491 490 AdminClient ac = rr.getAdminInterface(); 492 pi.setConfigEntry(""); 491 pi.setConfigEntry("", true); 492 ac.setAnnotation(remotePort.getRemoteHandle(), ParameterInfo.TYPE.getName(), pi); 493 pi.setConfigEntry("", false); 493 494 ac.setAnnotation(remotePort.getRemoteHandle(), ParameterInfo.TYPE.getName(), pi); 494 495 } … … 498 499 AdminClient ac = rr.getAdminInterface(); 499 500 ParameterInfo pi = (ParameterInfo)((RemotePort)object).getAnnotation(ParameterInfo.TYPE); 500 pi.setConfigEntry(""); 501 pi.setConfigEntry("", true); 502 ac.setAnnotation(((RemotePort)object).getRemoteHandle(), ParameterInfo.TYPE.getName(), pi); 503 pi.setConfigEntry("", false); 501 504 ac.setAnnotation(((RemotePort)object).getRemoteHandle(), ParameterInfo.TYPE.getName(), pi); 502 505 }
Note: See TracChangeset
for help on using the changeset viewer.