We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Properly type this in the future
incubator-wayang/wayang-api/wayang-api-python/src/main/java/org/apache/wayang/api/python/executor/ProcessFeeder.java
Line 104 in 11682e6
* Byte Array cases */ else if (obj instanceof Byte[] || obj instanceof byte[]) { writeBytes(obj, dataOut); } /** * String case * */ else if (obj instanceof String) { writeUTF((String) obj, dataOut); } // TODO: Properly type this in the future else if (obj instanceof Object) { writeUTF(String.valueOf(obj), dataOut); } /** * Key, Value case * */ else if (obj instanceof Map.Entry) { writeKeyValue((Map.Entry) obj, dataOut); } else{ throw new WayangException("Unexpected element type " + obj.getClass()); } } catch (IOException e) { e.printStackTrace(); }
6111aff71337e880c0fb25331378133cb527a702
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Properly type this in the future
incubator-wayang/wayang-api/wayang-api-python/src/main/java/org/apache/wayang/api/python/executor/ProcessFeeder.java
Line 104 in 11682e6
6111aff71337e880c0fb25331378133cb527a702
The text was updated successfully, but these errors were encountered: