Skip to content

Commit

Permalink
Fix indent errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SujanSanjula96 committed Oct 18, 2023
1 parent b93dad5 commit f9e1e00
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ public class SQLConstants {
public static final String GET_API_RESOURCE_PROPERTIES_BY_API_IDENTIFIER = "SELECT ARP.ID, ARP.NAME, ARP.VALUE"
+ " FROM API_RESOURCE AR JOIN API_RESOURCE_PROPERTY ARP WHERE AR.IDENTIFIER = ?";
public static final String GET_API_RESOURCE_PROPERTIES_BY_API_IDENTIFIER_H2 = "SELECT ARP.ID, ARP.NAME, ARP.`VALUE`"
+ " FROM API_RESOURCE AR JOIN API_RESOURCE_PROPERTY ARP WHERE AR.IDENTIFIER = ?";
+ " FROM API_RESOURCE AR JOIN API_RESOURCE_PROPERTY ARP WHERE AR.IDENTIFIER = ?";
public static final String ADD_API_RESOURCE_PROPERTY = "INSERT INTO API_RESOURCE_PROPERTY (API_ID, NAME, VALUE) " +
"VALUES (?, ?, ?)";
public static final String ADD_API_RESOURCE_PROPERTY_H2 = "INSERT INTO API_RESOURCE_PROPERTY (API_ID, NAME, " +
"`VALUE`) VALUES (?, ?, ?)";
"`VALUE`) VALUES (?, ?, ?)";
}

0 comments on commit f9e1e00

Please sign in to comment.