Skip to content

Commit

Permalink
fix PMD and checkstyle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed Aug 31, 2018
1 parent 31c116f commit e583f9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@CrossOrigin(origins = {
"http://largo.schoellerfamily.org:4200", "http://localhost:4200" })
@Controller
public class ChildrenController {
public final class ChildrenController {
/** Logger. */
private final transient Log logger = LogFactory.getLog(getClass());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@
@CrossOrigin(origins = {
"http://largo.schoellerfamily.org:4200", "http://localhost:4200" })
@Controller
public class DatasetsController {
public final class DatasetsController {
/** Logger. */
private final transient Log logger = LogFactory.getLog(getClass());

/** */
@Autowired
private transient RepositoryManagerMongo repositoryManager;

/**
* Controller to get the currently loaded data sets.
* @return a list of the names of the data sets
*/
@GetMapping(value = "/v1/dbs")
@ResponseBody
public List<String> dbs() {
Expand Down

0 comments on commit e583f9b

Please sign in to comment.