(InputStream input)
| 153 | // request the device id from the server |
| 154 | ConnectionRequest r = new ConnectionRequest() { |
| 155 | @Override |
| 156 | protected void readResponse(InputStream input) throws IOException { |
| 157 | com.codename1.io.Preferences.set("UDeviceKey__$", Util.readToString(input)); |
| 158 | } |
| 159 | |
| 160 | @Override |
| 161 | protected void handleErrorResponseCode(int code, String message) { |
nothing calls this directly
no test coverage detected