Skip to content

Commit

Permalink
Fixed minor security issue. Small refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmrsulja committed Oct 2, 2024
1 parent 55c5ce4 commit d64d5ca
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 @@ -17,10 +17,10 @@
import edu.cornell.mannlib.vitro.webapp.config.ConfigurationProperties;
import edu.cornell.mannlib.vitro.webapp.controller.VitroHttpServlet;
import edu.cornell.mannlib.vitro.webapp.controller.VitroRequest;
import edu.cornell.mannlib.vitro.webapp.controller.api.dto.InformationContentEntityResponseUtility;
import edu.cornell.mannlib.vitro.webapp.controller.api.dto.SoftwareRequestDTO;
import edu.cornell.mannlib.vitro.webapp.controller.api.dto.SoftwareResponseDTO;
import edu.cornell.mannlib.vitro.webapp.controller.api.sparqlquery.SparqlQueryApiExecutor;
import edu.cornell.mannlib.vitro.webapp.controller.api.utility.InformationContentEntityResponseUtility;
import edu.cornell.mannlib.vitro.webapp.controller.api.utility.InsertQueryBuilder;
import edu.cornell.mannlib.vitro.webapp.modelaccess.ModelAccess;
import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFService;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
package edu.cornell.mannlib.vitro.webapp.controller.api.dto;
package edu.cornell.mannlib.vitro.webapp.controller.api.utility;

import java.util.Map;
import java.util.Objects;

import edu.cornell.mannlib.vitro.webapp.controller.api.dto.AuthorDTO;
import edu.cornell.mannlib.vitro.webapp.controller.api.dto.FunderResponseDTO;
import edu.cornell.mannlib.vitro.webapp.controller.api.dto.InformationContentEntityResponseDTO;

public class InformationContentEntityResponseUtility {

public static void addAuthorToICE(Map<String, String> binding, InformationContentEntityResponseDTO entity) {
Expand Down

0 comments on commit d64d5ca

Please sign in to comment.