Git Product home page Git Product logo

Comments (4)

gwiazdor avatar gwiazdor commented on July 28, 2024

Here is the hotspot.log file: http://pastebin.com/DRcFgFDP

from jitwatch.

chriswhocodes avatar chriswhocodes commented on July 28, 2024

Hi, please can you check if you are using the latest code? (git pull origin master)

Double parsing should be locale safe after this change I made a while ago:

public static long parseStamp(String stamp)
{
    double number = parseLocaleSafeDouble(stamp);

    return (long) (number * 1000);
}

public static double parseLocaleSafeDouble(String str)
{
    NumberFormat nf = NumberFormat.getInstance(Locale.getDefault());

    double result = 0;

    try
    {
        result = nf.parse(str).doubleValue();
    }
    catch (ParseException pe)
    {
        System.err.println(pe.toString());
    }

    return result;
}

from jitwatch.

gwiazdor avatar gwiazdor commented on July 28, 2024

Hi Chris. Nope! For sure I'm not using the latest version... I've been using the pre-built jar (http://www.chrisnewland.com/images/jitwatch.jar). This evening I will build a master and give it a try!

from jitwatch.

chriswhocodes avatar chriswhocodes commented on July 28, 2024

I've updated the jar to contain the latest repo code which includes the number format fix so I think it's safe to close this issue.

from jitwatch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.