to-java not working on some setters

Description

In this example the last test fails.

I have used org.codehause.mojo.rpm.Mapping[1] as the example as this is where I discovered the bug.

[1] http://mojo.codehaus.org/rpm-maven-plugin/apidocs/org/codehaus/mojo/rpm/Mapping.html

Tests:

(do
(use 'clojure.java.data
'clojure.test)
(import '[org.codehaus.mojo.rpm Mapping])

(testing "setting normally"

(let [mapping (Mapping.)]
(.setConfiguration mapping "a value")
(.setDirectory mapping "/tmp")

(is (= (.getDirectory mapping) "/tmp"))
(is (= (.getConfiguration mapping) "a value"))))

(testing "setting via java-data"
(let [mapping (to-java Mapping {:configuration "a value" :directory "/tmp"})]
(is (= (.getDirectory mapping) "/tmp"))
(is (= (.getConfiguration mapping) "a value")))))

Environment

clojure 1.5.1
org.clojure/java.data 0.1.1

Activity

Show:

Sean Corfield October 13, 2019 at 12:45 AM

I am unable to reproduce this:

It works as expected on later Clojure versions too.

Cannot Reproduce

Details

Assignee

Priority

Created October 9, 2013 at 12:08 PM
Updated October 13, 2019 at 12:46 AM
Resolved October 13, 2019 at 12:46 AM