wscp

Results 37 comments of wscp

I'm currently doing some proofreading work where I try to correct spelling, grammar and formatting mistakes, and I've found another thing which seems a bit off... on line 549, >...

Yup, can confirm this working well on linux as well. problem is blueman also ignores the additional battery report. If anyone is planning on using this code and rebasing on...

this crops up when one performs analysis by including sources from multiple paths. for example, consider a multimodule project. it has sources for package com.ex.pkg1 at `module1/module2` as well as...

In my opinion, spoon does not always need to conform to the java spec. The JVM spec does not seem to explicitly mention how classes are loaded from multiple jar...

there are unfortunately no tests in spoon itself but the changes have been tested within DeepSource's Java analyser.

Um, correct me if I'm wrong, but in cases like this, isn't it always better to compare individual bytes rather than "characters", since then it becomes a matter of comparing...

What I meant was that comparing groups of bytes at a time as characters wouldn't be as easy as comparing bytes individually in the string to arrive at an answer....

What I meant by character, was the set of bytes that represent a Unicode code point. For example, 来 is represented by the set of bytes `[230, 157, 165]`, and...

Thank you, now I understand why this bug is occurring. In the second case, the search returns only the first byte `[230]`, which is not a valid character, and won't...