Skip to content

Commit e95761a

Browse files
fixed compilation error
1 parent 008fcc0 commit e95761a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/contrast/labs/ai/mcp/contrast/AssessService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public List<ApplicationData> getApplications(String app_name) throws IOException
234234
List<ApplicationData> filteredApps = new ArrayList<>();
235235
for(Application app : applications) {
236236
if(app.getName().toLowerCase().contains(app_name.toLowerCase())) {
237-
filteredApps.add(new ApplicationData(app.getName()m app.getStatus(), app.getId(), app.getLastSeen(), app.getLanguage()));
237+
filteredApps.add(new ApplicationData(app.getName(), app.getStatus(), app.getId(), app.getLastSeen(), app.getLanguage()));
238238
logger.debug("Found matching application - ID: {}, Name: {}, Status: {}",
239239
app.getId(), app.getName(), app.getStatus());
240240
}

0 commit comments

Comments
 (0)