fn get_jids()

in src/data/java_profile.rs [82:90]


    fn get_jids(&mut self, arg: &str) -> Vec<String> {
        let mut jids: Vec<String> = Vec::new();
        for (key, value) in self.process_map.clone().into_iter() {
            if arg == value[0] || arg == key {
                jids.push(key);
            }
        }
        jids
    }