Changeset 3825
- Timestamp:
- Oct 12, 2007, 3:06:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.4-stable/src/core/net/sf/basedb/util/overview/ExperimentOverview.java
r3776 r3825 1500 1500 { 1501 1501 ProtocolType pt = protocol.getProtocolType(); 1502 if (!pt.getSystemId().equals(defaultProtocol.getType())) 1502 String requiredId = defaultProtocol == null ? null : defaultProtocol.getType(); 1503 if (requiredId != null && !requiredId.equals(pt.getSystemId())) 1503 1504 { 1504 1505 failures.add(new Failure(Validator.INCORRECT_PROTOCOLTYPE, parentNode, null,
Note: See TracChangeset
for help on using the changeset viewer.