Skip to content

Commit

Permalink
addressing checkstyle issues
Browse files Browse the repository at this point in the history
Signed-off-by: Benny <[email protected]>
  • Loading branch information
DukeDavis12 committed Nov 14, 2023
1 parent 2cd2960 commit 1980b18
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions component-samples/demo/aio/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ workers:
- org.fidoalliance.fdo.protocol.db.StandardReplacementVoucherStorageFunction
- org.fidoalliance.fdo.protocol.db.StandardRendezvousWaitSecondsSupplier
- org.fidoalliance.fdo.protocol.db.StandardOwnerInfoSizeSupplier
- org.fidoalliance.fdo.protocol.db.ConformanceOwnerModule
#- org.fidoalliance.fdo.protocol.db.ConformanceOwnerModule
- org.fidoalliance.fdo.protocol.db.StandardServiceInfoDocumentSupplier
- org.fidoalliance.fdo.protocol.db.FdoSimDownloadOwnerModule
- org.fidoalliance.fdo.protocol.db.FdoSimUploadOwnerModule
#- org.fidoalliance.fdo.protocol.db.FdoSimUploadOwnerModule
- org.fidoalliance.fdo.protocol.db.FdoSimCommandOwnerModule
- org.fidoalliance.fdo.protocol.db.FdoSimWebGetOwnerModule
- org.fidoalliance.fdo.protocol.db.FdoSimCsrOwnerModule
#- org.fidoalliance.fdo.protocol.db.FdoSimWebGetOwnerModule
#- org.fidoalliance.fdo.protocol.db.FdoSimCsrOwnerModule
- org.fidoalliance.fdo.protocol.db.FdoSysOwnerModule
8 changes: 4 additions & 4 deletions component-samples/demo/device/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ workers:
- org.fidoalliance.fdo.sample.StandardCredReuseFunction
#- org.fidoalliance.fdo.sample.UnsupportedCredReuseFunction
- org.fidoalliance.fdo.sample.StandardDeviceModule
- org.fidoalliance.fdo.sample.ConformanceDeviceModule
#- org.fidoalliance.fdo.sample.ConformanceDeviceModule
- org.fidoalliance.fdo.sample.FdoSimDownloadDeviceModule
- org.fidoalliance.fdo.sample.FdoSimUploadDeviceModule
#- org.fidoalliance.fdo.sample.FdoSimUploadDeviceModule
- org.fidoalliance.fdo.sample.FdoSimCommandDeviceModule
- org.fidoalliance.fdo.sample.FdoSimWebGetDeviceModule
- org.fidoalliance.fdo.sample.FdoSimCsrDeviceModule
#- org.fidoalliance.fdo.sample.FdoSimWebGetDeviceModule
#- org.fidoalliance.fdo.sample.FdoSimCsrDeviceModule
- org.fidoalliance.fdo.sample.FdoSysDeviceModule


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ protected void load(ServiceInfoModuleState state, FdoSysModuleExtra extra)
getExecCb(state, extra, instructions[i]);
} else if (instructions[i].getFetch() != null) {
getFetch(state, extra, instructions[i]);
} else if (instruction.getOwnerExec() != null) {
getOwnerExec(state, extra, instruction);
} else if (instructions[i].getOwnerExec() != null) {
getOwnerExec(state, extra, instructions[i]);
} else {
break;
}
Expand Down

0 comments on commit 1980b18

Please sign in to comment.